
    :root {
        --green: #1f5f3b;
        --green-dark: #123a25;
        --lime: #9dcc3b;
        --red: #d52f24;
        --ink: #162018;
        --muted: #617066;
        --bg: #f4f7f1;
        --card: #ffffff;
        --line: #dfe7dc;
        --radius: 22px;
        --shadow: 0 20px 45px rgba(18, 58, 37, .14);
    }

    * {
        box-sizing: border-box
    }

    body {
        margin: 0;
        font-family: Arial, Helvetica, sans-serif;
        color: var(--ink);
        background: var(--bg);
        line-height: 1.6
    }

    a {
        color: inherit;
        text-decoration: none
    }

    img {
        max-width: 100%;
        display: block
    }

    .topbar {
        background: var(--green-dark);
        color: #fff;
        font-size: 14px;
        padding: 8px 20px;
        text-align: center
    }

    .nav {
        position: sticky;
        top: 0;
        z-index: 20;
        background: rgba(255, 255, 255, .94);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--line)
    }

    .nav-inner {
        max-width: 1180px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        gap: 20px
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 800;
        font-size: 24px;
        letter-spacing: .4px;
        color: var(--green-dark)
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--red), #ff7a30);
        box-shadow: 0 10px 20px rgba(213, 47, 36, .25)
    }

    .menu {
        display: flex;
        gap: 22px;
        font-weight: 700;
        font-size: 14px;
        color: #314437
    }

    .menu a:hover {
        color: var(--red)
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        padding: 13px 22px;
        font-weight: 800;
        background: var(--red);
        color: #fff;
        box-shadow: 0 12px 22px rgba(213, 47, 36, .25)
    }

    .btn.secondary {
        background: #fff;
        color: var(--green-dark);
        border: 1px solid var(--line);
        box-shadow: none
    }

    .hero {
        position: relative;
        min-height: 690px;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: var(--green-dark)
    }

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(18, 58, 37, .96), rgba(18, 58, 37, .78) 42%, rgba(18, 58, 37, .25)), url('images/20240827-140923-1024x683.jpg') center/cover no-repeat;
        transform: scale(1.02)
    }

    .hero-inner {
        position: relative;
        max-width: 1180px;
        margin: auto;
        padding: 90px 20px;
        color: #fff;
        width: 100%
    }

    .eyebrow {
        display: inline-block;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .16em;
        color: #d8f08a;
        margin-bottom: 18px
    }

    h1 {
        font-size: clamp(40px, 6vw, 78px);
        line-height: 1.02;
        margin: 0 0 24px;
        max-width: 780px
    }

    .lead {
        font-size: 20px;
        max-width: 690px;
        color: #eef6e9;
        margin: 0 0 34px
    }

    .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        max-width: 1180px;
        margin: -66px auto 70px;
        padding: 0 20px;
        position: relative;
        z-index: 5
    }

    .stat {
        background: var(--card);
        border-radius: 18px;
        padding: 24px;
        box-shadow: var(--shadow);
        border: 1px solid var(--line)
    }

    .stat strong {
        display: block;
        font-size: 26px;
        color: var(--green-dark);
        line-height: 1.1
    }

    .stat span {
        color: var(--muted);
        font-weight: 700;
        font-size: 14px
    }

    section {
        max-width: 1180px;
        margin: 0 auto 86px;
        padding: 0 20px
    }

    .section-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 30px;
        margin-bottom: 34px
    }

    .section-head h2 {
        font-size: clamp(30px, 4vw, 48px);
        line-height: 1.1;
        margin: 0;
        color: var(--green-dark)
    }

    .section-head p {
        max-width: 520px;
        color: var(--muted);
        margin: 0
    }

    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px
    }

    .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px
    }

    .card {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 0 14px 28px rgba(18, 58, 37, .08)
    }

    .card-img {
        height: 245px;
        object-fit: cover;
        width: 100%
    }

    .card-body {
        padding: 25px
    }

    .card h3 {
        margin: 0 0 10px;
        font-size: 23px;
        color: var(--green-dark)
    }

    .card p {
        margin: 0;
        color: var(--muted)
    }

    .feature {
        background: #fff;
        border-radius: var(--radius);
        padding: 30px;
        border: 1px solid var(--line)
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: #eef7df;
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        margin-bottom: 16px;
        font-size: 22px
    }

    .feature h3 {
        margin: 0 0 10px;
        color: var(--green-dark)
    }

    .feature p {
        margin: 0;
        color: var(--muted)
    }

    .split {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 34px;
        align-items: center;
        background: #fff;
        border-radius: 32px;
        padding: 34px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow)
    }

    .split img {
        border-radius: 24px;
        height: 470px;
        width: 100%;
        object-fit: cover
    }

    .checklist {
        padding: 0;
        margin: 24px 0 0;
        list-style: none
    }

    .checklist li {
        padding: 10px 0 10px 34px;
        position: relative;
        border-bottom: 1px solid #eef2ec
    }

    .checklist li:before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 10px;
        color: var(--red);
        font-weight: 900
    }

    .split h2 {
        font-size: 42px;
        line-height: 1.1;
        margin: 0 0 18px;
        color: var(--green-dark)
    }

    .split p {
        color: var(--muted);
        margin: 0
    }

    .faq {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px
    }

    .faq-item {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 22px
    }

    .faq-item h3 {
        font-size: 18px;
        margin: 0 0 8px;
        color: var(--green-dark)
    }

    .faq-item p {
        margin: 0;
        color: var(--muted)
    }

    .cta {
        max-width: 1180px;
        margin: 0 auto 70px;
        padding: 0 20px
    }

    .cta-box {
        background: linear-gradient(135deg, var(--green-dark), var(--green));
        color: #fff;
        border-radius: 32px;
        padding: 52px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 24px;
        align-items: center;
        overflow: hidden
    }

    .cta h2 {
        font-size: 42px;
        line-height: 1.12;
        margin: 0 0 16px
    }

    .cta p {
        margin: 0;
        color: #e9f6e8
    }

    .contact-card {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 24px;
        padding: 26px
    }

    .contact-card strong {
        display: block;
        font-size: 22px;
        margin-bottom: 6px
    }

    footer {
        background: #101812;
        color: #cbd8ce;
        padding: 38px 20px;
        text-align: center;
        font-size: 14px
    }

    .source-note {
        max-width: 900px;
        margin: 12px auto 0;
        color: #93a397
    }

    @media(max-width:900px) {
        .menu {
            display: none
        }

        .hero {
            min-height: 600px
        }

        .stats,
        .grid-3,
        .grid-4,
        .grid-2,
        .split,
        .faq,
        .cta-box {
            grid-template-columns: 1fr
        }

        .stats {
            margin-top: -42px
        }

        .section-head {
            display: block
        }

        .split img {
            height: 330px
        }

        .cta-box {
            padding: 32px
        }

        h1 {
            font-size: 42px
        }
    }

    footer .legal-links {
        margin-top: 10px;
    }

    footer .legal-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        margin: 0 8px;
    }

    footer .legal-links a:hover {
        color: #9dcc3b;
    }

    .logo img {
        display: block;
        height: auto;
        max-width: 320px;
    }

    @media (max-width: 767px) {
        .logo img {
            max-width: 210px;
        }
    }
