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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e3f;
    background: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2930;
    color: #fff;
    padding: 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

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

.cookie-content a {
    color: #8fb8aa;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #4a7c59;
    color: #fff;
}

.btn-accept:hover {
    background: #3d6847;
}

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

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

.nav-asymmetric {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5446;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #5a6b6c;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c5446;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4a7c59;
}

.ad-disclosure {
    font-size: 12px;
    color: #999;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 80px 40px 80px 80px;
    background: linear-gradient(135deg, #f8faf9 0%, #e8f0ed 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #1a3028;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 19px;
    color: #4a6b5c;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3d6847;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2c5436;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 104, 71, 0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: -40px;
    margin-top: -40px;
    margin-bottom: -80px;
    background: #b8d4c8;
}

.hero-image-right img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.intro-diagonal {
    display: flex;
    padding: 120px 40px 100px 80px;
    gap: 80px;
    align-items: center;
    background: #fff;
    position: relative;
}

.intro-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 40%;
    height: 100%;
    background: #f0f7f4;
    transform: skewX(-8deg);
    z-index: 0;
}

.intro-text-block {
    flex: 1.3;
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.intro-text-block h2 {
    font-size: 38px;
    color: #1a3028;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 17px;
    color: #4a5e5f;
    margin-bottom: 20px;
    line-height: 1.75;
}

.intro-visual-accent {
    flex: 1;
    position: relative;
    margin-top: 40px;
    background: #d4e5dd;
}

.intro-visual-accent img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.services-staggered {
    padding: 120px 60px;
    background: #fafbfa;
}

.section-header-offset {
    max-width: 680px;
    margin-bottom: 80px;
    margin-left: 120px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1a3028;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #5a6b6c;
    line-height: 1.6;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-position-1 {
    margin-left: 0;
    margin-right: 120px;
}

.card-position-2 {
    margin-left: 180px;
    margin-right: 0;
}

.card-position-3 {
    margin-left: 60px;
    margin-right: 100px;
}

.card-position-4 {
    margin-left: 220px;
    margin-right: 40px;
}

.card-position-5 {
    margin-left: 40px;
    margin-right: 160px;
}

.service-visual {
    flex: 1;
    min-width: 300px;
    background: #e5efe9;
}

.service-visual img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.service-info {
    flex: 1.2;
}

.service-info h3 {
    font-size: 26px;
    color: #1a3028;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    color: #4a5e5f;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid #e5e5e5;
}

.service-duration {
    font-size: 14px;
    color: #6b7c7d;
}

.service-price {
    font-size: 22px;
    color: #3d6847;
    font-weight: 700;
}

.btn-select {
    padding: 14px 28px;
    background: #4a7c59;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #3d6847;
    transform: translateX(4px);
}

.approach-overlap {
    position: relative;
    min-height: 600px;
    margin: 80px 40px;
    display: flex;
    align-items: center;
}

.approach-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: #c8ddd3;
}

.approach-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.approach-content-box {
    position: relative;
    background: #fff;
    padding: 60px;
    max-width: 620px;
    margin-left: auto;
    margin-right: 80px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 2;
}

.approach-content-box h2 {
    font-size: 32px;
    color: #1a3028;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.approach-content-box p {
    font-size: 16px;
    color: #4a5e5f;
    margin-bottom: 20px;
    line-height: 1.75;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #3d6847;
    color: #3d6847;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3d6847;
    color: #fff;
}

.form-section-shifted {
    display: flex;
    gap: 80px;
    padding: 100px 80px 100px 140px;
    background: #f0f7f4;
    align-items: flex-start;
}

.form-intro-text {
    flex: 1;
    max-width: 480px;
    padding-top: 20px;
}

.form-intro-text h2 {
    font-size: 36px;
    color: #1a3028;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.form-intro-text p {
    font-size: 17px;
    color: #4a5e5f;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #d0d7d8;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: #2c3e3f;
    background: #fafafa;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    background: #fff;
}

.btn-submit {
    padding: 16px 32px;
    background: #3d6847;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #2c5436;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 104, 71, 0.3);
}

.footer-asymmetric {
    background: #1a3028;
    color: #c8d8d3;
    padding: 80px 60px 40px;
}

.footer-main {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-column {
    flex: 1;
}

.footer-col-1 {
    flex: 1.5;
}

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #c8d8d3;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

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

.disclaimer {
    font-size: 13px;
    color: #8a9a95;
    line-height: 1.7;
    margin-bottom: 20px;
}

.copyright {
    font-size: 14px;
    color: #8a9a95;
    text-align: center;
}

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

.legal-page h1 {
    font-size: 42px;
    color: #1a3028;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page .last-updated {
    font-size: 14px;
    color: #6b7c7d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c5446;
    margin: 48px 0 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    color: #3d6847;
    margin: 32px 0 16px;
    font-weight: 600;
}

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

.legal-page ul {
    margin: 20px 0 20px 24px;
}

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

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    color: #1a3028;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-header p {
    font-size: 18px;
    color: #4a5e5f;
    line-height: 1.7;
}

.contact-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    color: #2c5446;
    margin-bottom: 16px;
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    color: #4a5e5f;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-visual {
    flex: 1;
    background: #d4e5dd;
}

.contact-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4a7c59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.thanks-page h1 {
    font-size: 42px;
    color: #1a3028;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.thanks-service {
    background: #f0f7f4;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.thanks-service strong {
    color: #2c5446;
    font-size: 16px;
}

.thanks-actions {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

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

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content-left h1 {
        font-size: 40px;
    }

    .hero-image-right {
        margin: 0;
        width: 100%;
    }

    .hero-image-right img {
        height: 400px;
        clip-path: none;
    }

    .intro-diagonal {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
    }

    .intro-diagonal::before {
        display: none;
    }

    .service-card {
        flex-direction: column;
        gap: 32px;
        padding: 32px;
    }

    .card-position-1,
    .card-position-2,
    .card-position-3,
    .card-position-4,
    .card-position-5 {
        margin-left: 0;
        margin-right: 0;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .approach-overlap {
        flex-direction: column;
        margin: 40px 20px;
    }

    .approach-background {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .approach-content-box {
        margin: -60px 20px 0;
    }

    .form-section-shifted {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }

    .footer-main {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 20px);
        min-width: 200px;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content-left h1 {
        font-size: 32px;
    }

    .section-header-offset h2 {
        font-size: 32px;
    }

    .service-visual {
        min-width: 100%;
    }

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