* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    background-color: #f8f9fa;
}

.hero-text-block {
    flex: 1;
    padding: 100px 60px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    background-color: #ffffff;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-image-offset {
    flex: 1.3;
    position: relative;
    overflow: hidden;
    background-color: #dfe6e9;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-offset {
    padding: 120px 40px;
    background-color: #ffffff;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.services-grid-asymmetric {
    padding: 80px 40px;
    background-color: #f8f9fa;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-large {
    flex: 1 1 calc(60% - 12px);
    min-width: 400px;
}

.service-small {
    flex: 1 1 calc(35% - 12px);
    min-width: 300px;
}

.service-medium {
    flex: 1 1 calc(50% - 12px);
    min-width: 350px;
}

.service-wide {
    flex: 1 1 100%;
    flex-direction: row;
}

.service-accent {
    flex: 1 1 calc(45% - 12px);
    min-width: 350px;
    background-color: #ecf0f1;
}

.service-tall {
    flex: 1 1 calc(50% - 12px);
    min-width: 350px;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.service-wide img {
    width: 50%;
    height: auto;
    min-height: 300px;
}

.service-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-wide .service-info {
    width: 50%;
}

.service-info h3 {
    font-size: 24px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.about-inline {
    display: flex;
    gap: 60px;
    padding: 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
}

.about-image-left {
    flex: 1;
    background-color: #dfe6e9;
}

.about-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.about-text-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.about-text-right h2 {
    font-size: 32px;
    color: #1a1a1a;
}

.about-text-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2980b9;
}

.contact-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.form-wrapper-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #4a5568;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.selected-service-display {
    padding: 16px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    font-size: 15px;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-block-offset {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-block-reverse {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.image-block {
    flex: 1;
    background-color: #dfe6e9;
}

.image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 350px;
}

.team-section {
    margin: 80px 0;
    padding: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-section > p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
}

.team-values {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.philosophy-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-header img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.service-body {
    padding: 40px;
}

.service-body h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-body > p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-size: 16px;
    color: #4a5568;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.cta-section {
    padding: 80px 40px;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #dfe6e9;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.contact-additional {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-wrapper {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-wrapper h2 {
    font-size: 26px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-wrapper ul {
    margin: 16px 0 16px 24px;
}

.legal-wrapper ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.thanks-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.thanks-info {
    padding: 20px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    margin-bottom: 32px;
}

.thanks-info p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.thanks-image {
    flex: 1;
    background-color: #dfe6e9;
}

.thanks-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 400px;
}

.next-steps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-text-block {
        max-width: 100%;
        padding: 60px 40px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .service-wide {
        flex-direction: column;
    }

    .service-wide img,
    .service-wide .service-info {
        width: 100%;
    }

    .about-inline,
    .about-block-offset,
    .about-block-reverse {
        flex-direction: column;
    }

    .contact-page-content,
    .thanks-hero {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .team-values {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
    }
}
