* {
    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;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #97c997;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1f4620;
    transform: translateY(-2px);
}

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 80px 6% 80px 8%;
    background-color: #f8faf8;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 19px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s, background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f4620;
    transform: translateY(-3px);
}

.hero-visual-offset {
    flex: 1;
    position: relative;
    margin-left: -40px;
    margin-top: 60px;
    background-color: #e8f3e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.content-scattered {
    display: flex;
    padding: 120px 6% 100px;
    gap: 80px;
    align-items: center;
}

.text-block-left {
    flex: 1;
    max-width: 500px;
}

.text-block-left h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.text-block-left p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
}

.image-block-right {
    flex: 1;
    background-color: #e8f3e8;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -40px;
}

.image-block-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlap-section {
    padding: 80px 6%;
    background-color: #ffffff;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.overlap-card {
    background-color: #f8faf8;
    padding: 45px;
    border-radius: 10px;
    max-width: 480px;
    flex: 1;
    min-width: 320px;
    position: relative;
    border: 1px solid #e8e8e8;
}

.card-pushed {
    margin-top: 60px;
}

.card-floating {
    margin-top: -30px;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.overlap-card h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.overlap-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 25px;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.btn-service {
    padding: 14px 35px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-service:hover {
    background-color: #1f4620;
    transform: translateY(-2px);
}

.diagonal-split {
    background: linear-gradient(135deg, #f8faf8 0%, #f8faf8 50%, #ffffff 50%, #ffffff 100%);
    padding: 100px 6%;
}

.split-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.content-zone {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

.content-zone h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.content-zone p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 25px;
}

.visual-interlude {
    position: relative;
    height: 500px;
    background-color: #e8f3e8;
    overflow: hidden;
}

.visual-interlude img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interlude-text {
    position: absolute;
    bottom: 40px;
    left: 6%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 45px;
    border-radius: 8px;
    max-width: 600px;
}

.interlude-text p {
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.offset-grid {
    padding: 100px 6%;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.grid-item {
    background-color: #f8faf8;
    border-radius: 8px;
    padding: 40px;
}

.item-large {
    flex: 2;
    min-width: 400px;
}

.item-medium {
    flex: 1;
    min-width: 300px;
    padding: 0;
    background-color: #e8f3e8;
    overflow: hidden;
}

.item-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-small {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
}

.grid-item h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.grid-item h4 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.grid-item p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
}

.form-section-offset {
    padding: 100px 6% 100px 10%;
    background-color: #f8faf8;
}

.form-container {
    max-width: 650px;
    margin-left: 80px;
}

.form-container h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-container > p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    padding: 16px 50px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

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

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 6% 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #bdc3c7;
}

.page-header-offset {
    padding: 80px 6% 60px 10%;
    background-color: #f8faf8;
}

.page-header-offset h1 {
    font-size: 52px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header-offset p {
    font-size: 20px;
    color: #495057;
}

.story-layout {
    display: flex;
    padding: 80px 6%;
    gap: 70px;
    align-items: center;
}

.story-block {
    flex: 1;
    background-color: #e8f3e8;
    border-radius: 8px;
    overflow: hidden;
}

.story-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.offset-values {
    padding: 100px 6%;
    background-color: #f8faf8;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.card-left {
    margin-top: 50px;
}

.card-center {
    margin-top: -20px;
}

.card-right {
    margin-top: 30px;
}

.value-card h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.team-asymmetric {
    padding: 80px 6%;
    display: flex;
    gap: 70px;
    align-items: center;
    background-color: #ffffff;
}

.team-intro {
    flex: 1;
}

.team-intro h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.team-intro p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
}

.team-visual {
    flex: 1;
    background-color: #e8f3e8;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -50px;
}

.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-section {
    padding: 100px 6%;
    background-color: #f8faf8;
}

.approach-section h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.approach-step h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.approach-step p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.services-asymmetric {
    padding: 80px 6%;
}

.service-feature {
    margin-bottom: 100px;
}

.feature-large {
    display: flex;
    gap: 60px;
    align-items: center;
}

.feature-visual {
    flex: 1;
    background-color: #e8f3e8;
    border-radius: 8px;
    overflow: hidden;
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-content p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 18px;
}

.price-display {
    font-size: 36px;
    font-weight: 800;
    color: #2c5f2d;
    margin-bottom: 25px;
}

.btn-service-large {
    padding: 16px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-service-large:hover {
    background-color: #1f4620;
    transform: translateY(-2px);
}

.feature-medium {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background-color: #f8faf8;
    border-radius: 10px;
}

.feature-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.feature-offset {
    background-color: #f8faf8;
    padding: 60px;
    border-radius: 10px;
    margin-left: 80px;
}

.feature-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.split-content-left {
    flex: 1.2;
}

.split-visual-right {
    flex: 1;
    background-color: #e8f3e8;
    border-radius: 8px;
    overflow: hidden;
}

.split-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-compact {
    max-width: 700px;
    padding: 50px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-left: 40%;
}

.feature-full {
    padding: 60px;
    background: linear-gradient(135deg, #f8faf8 0%, #ffffff 100%);
    border-radius: 10px;
}

.cta-section-offset {
    padding: 100px 6% 100px 12%;
    background-color: #2c5f2d;
    color: #ffffff;
}

.cta-content {
    max-width: 700px;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #f8faf8;
    transform: translateY(-3px);
}

.contact-asymmetric {
    padding: 80px 6%;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding-right: 40px;
}

.contact-info-block h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-item p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

.no-link {
    color: #495057;
    pointer-events: none;
}

.contact-visual {
    flex: 1;
    background-color: #e8f3e8;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 60px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-info {
    padding: 80px 10% 80px 6%;
    background-color: #f8faf8;
}

.additional-info h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.additional-info p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
}

.thanks-container {
    padding: 100px 6%;
    display: flex;
    gap: 70px;
    align-items: center;
    min-height: 60vh;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #e8f3e8;
    border-radius: 6px;
}

.service-confirmation p {
    font-size: 17px;
    color: #2c5f2d;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1f4620;
    transform: translateY(-2px);
}

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

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

.thanks-visual {
    flex: 1;
    background-color: #e8f3e8;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 80px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-page h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-text-block {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .hero-visual-offset {
        margin-left: 0;
        margin-top: 0;
        min-height: 400px;
    }

    .content-scattered {
        flex-direction: column;
        padding: 80px 5%;
        gap: 50px;
    }

    .image-block-right {
        margin-top: 0;
    }

    .story-layout {
        flex-direction: column;
        gap: 50px;
    }

    .team-asymmetric {
        flex-direction: column;
        gap: 50px;
    }

    .team-visual {
        margin-top: 0;
    }

    .feature-large,
    .feature-medium {
        flex-direction: column;
    }

    .feature-split {
        flex-direction: column;
    }

    .contact-asymmetric {
        flex-direction: column;
        gap: 50px;
    }

    .contact-visual {
        margin-top: 0;
    }

    .thanks-container {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
        padding: 15px 5%;
    }

    .nav-links {
        gap: 20px;
    }

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

    .text-block-left h2,
    .story-text h2,
    .team-intro h2,
    .feature-content h2 {
        font-size: 32px;
    }

    .approach-section h2,
    .form-container h2,
    .cta-content h2 {
        font-size: 34px;
    }

    .overlap-section {
        flex-direction: column;
    }

    .card-pushed,
    .card-floating {
        margin-top: 0;
    }

    .split-content {
        flex-direction: column;
    }

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

    .form-container {
        margin-left: 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

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

    .card-left,
    .card-center,
    .card-right {
        margin-top: 0;
    }

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

    .feature-offset {
        margin-left: 0;
    }

    .feature-compact {
        margin-left: 0;
    }

    .cta-section-offset {
        padding: 80px 5%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .legal-page {
        padding: 60px 5%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}