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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e4d2b;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.nav-links a {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.nav-links a:hover {
    color: #4a7856;
}

.hero-asymmetric {
    min-height: 85vh;
    position: relative;
    padding: 80px 60px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 520px;
    z-index: 2;
    padding-left: 40px;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: #1e4d2b;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.hero-image-overlap {
    flex: 1;
    height: 620px;
    position: relative;
    margin-top: -80px;
    margin-right: -60px;
    overflow: hidden;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.mission-irregular {
    padding: 120px 60px;
    background-color: #f8faf9;
}

.mission-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.mission-visual {
    flex: 0 0 420px;
    height: 480px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.mission-visual img {
    width: 100%;
    height: 100%;
}

.mission-content-shifted {
    flex: 1;
    padding-top: 20px;
}

.mission-content-shifted h2 {
    font-size: 2.4rem;
    color: #1e4d2b;
    margin-bottom: 32px;
    line-height: 1.3;
    font-weight: 700;
}

.mission-content-shifted p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.75;
}

.services-overlap {
    padding: 100px 60px 140px;
    background-color: #ffffff;
    position: relative;
}

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

.services-header-offset h2 {
    font-size: 2.6rem;
    color: #1e4d2b;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

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

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

.service-card-large {
    flex: 1 1 calc(50% - 20px);
    min-width: 480px;
}

.service-card-offset {
    flex: 1 1 calc(50% - 20px);
    min-width: 480px;
    margin-top: 40px;
}

.service-card-small {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 320px;
}

.service-card-wide {
    flex: 1 1 calc(66.666% - 27px);
    min-width: 640px;
    display: flex;
    flex-direction: row;
}

.service-card-wide .service-visual {
    flex: 0 0 50%;
}

.service-card-wide .service-info {
    flex: 1;
}

.service-card-offset-reverse {
    flex: 1 1 calc(50% - 20px);
    min-width: 480px;
    margin-top: -60px;
}

.service-card-elevated {
    flex: 1 1 calc(50% - 20px);
    min-width: 480px;
    margin-left: 80px;
}

.service-visual {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

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

.service-info h3 {
    font-size: 1.5rem;
    color: #1e4d2b;
    font-weight: 600;
}

.service-info p {
    font-size: 0.98rem;
    color: #4a5568;
    line-height: 1.65;
}

.service-price {
    font-size: 1.6rem;
    color: #2d5a3d;
    font-weight: 700;
    margin-top: 8px;
}

.service-select {
    background-color: #e8f4ed;
    color: #2d5a3d;
    border: 1px solid #2d5a3d;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}

.service-select:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.form-section-irregular {
    padding: 100px 60px;
    background-color: #f1f5f4;
    position: relative;
}

.form-container-offset {
    max-width: 900px;
    margin-left: auto;
    margin-right: 100px;
}

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

.form-intro h2 {
    font-size: 2.4rem;
    color: #1e4d2b;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
}

.contact-form-asymmetric {
    background-color: #ffffff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.form-group label {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #cbd5e0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-service-selected {
    background-color: #e8f4ed;
    padding: 16px;
    border-left: 4px solid #2d5a3d;
    font-size: 0.95rem;
    color: #2c3e50;
}

.form-submit {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background-color: #1e4d2b;
}

.impact-showcase {
    padding: 120px 60px;
    background-color: #ffffff;
}

.impact-content-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.impact-numbers {
    flex: 1;
}

.impact-numbers h2 {
    font-size: 2.6rem;
    color: #1e4d2b;
    margin-bottom: 48px;
    font-weight: 700;
}

.stat-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 3rem;
    color: #2d5a3d;
    font-weight: 700;
}

.stat-label {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.5;
}

.impact-visual-overlap {
    flex: 0 0 500px;
    height: 560px;
    margin-top: -100px;
    position: relative;
    overflow: hidden;
}

.impact-visual-overlap img {
    width: 100%;
    height: 100%;
}

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

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

.footer-brand-section h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-brand-section p {
    font-size: 1rem;
    color: #a0aec0;
    max-width: 320px;
}

.footer-links-irregular {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-column a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-column p {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 0.88rem;
    color: #718096;
    line-height: 1.65;
}

.footer-bottom {
    max-width: 1400px;
    margin: 32px auto 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #81e6d9;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1e4d2b;
}

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

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

@media (max-width: 1024px) {
    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        background-color: #ffffff;
        border-bottom: 1px solid #e9ecef;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-content-offset {
        flex-direction: column;
    }

    .hero-image-overlap {
        margin-right: 0;
        margin-top: 40px;
        width: 100%;
    }

    .mission-wrapper {
        flex-direction: column;
    }

    .mission-visual {
        margin-top: 0;
        width: 100%;
    }

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

    .service-card-large,
    .service-card-offset,
    .service-card-small,
    .service-card-wide,
    .service-card-offset-reverse,
    .service-card-elevated {
        flex: 1 1 100%;
        margin: 0;
        min-width: 100%;
    }

    .form-container-offset {
        margin-right: 0;
    }

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

    .impact-visual-overlap {
        margin-top: 40px;
        width: 100%;
    }

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

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