:root {
    font-family: Arial, Helvetica, sans-serif;
    color: #17332e;
    background: #f7f8f3;
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
}
a {
    color: inherit;
}
header {
    background: #0d3b32;
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}
nav {
    max-width: 1160px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 26px;
    gap: 22px;
}
nav strong {
    font-size: 18px;
    letter-spacing: 0.08em;
}
nav .links {
    display: flex;
    gap: 23px;
    font-size: 14px;
}
nav a {
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
}
.hero {
    background: linear-gradient(110deg, #103d33 0%, #165846 56%, #31765b 100%);
    color: #fff;
    overflow: hidden;
}
.hero-inner {
    max-width: 1160px;
    margin: auto;
    padding: 98px 26px 105px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;
}
.eyebrow {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.16em;
    color: #d7be70;
    font-weight: bold;
}
h1 {
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.045em;
    margin: 22px 0;
}
h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 12px 0 22px;
}
h3 {
    font-size: 23px;
    margin: 0 0 12px;
}
p {
    line-height: 1.65;
}
.lead {
    font-size: 19px;
    max-width: 670px;
    color: #e2eee7;
}
.hero-graphic {
    border: 2px solid #bda958;
    border-radius: 50%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    position: relative;
    transform: rotate(-12deg);
}
.hero-graphic:before {
    content: "";
    position: absolute;
    inset: 11%;
    border: 1px solid #a5c6a5;
    border-radius: 50%;
}
.hero-graphic span {
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.07em;
    font-size: clamp(26px, 4vw, 46px);
    line-height: 1.1;
}
.button {
    display: inline-block;
    background: #e1bd64;
    color: #183c30;
    text-decoration: none;
    padding: 15px 22px;
    border-radius: 3px;
    font-weight: 700;
    margin-top: 20px;
}
.button:hover {
    background: #f2d991;
}
.wrap {
    max-width: 1160px;
    margin: auto;
    padding: 80px 26px;
}
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
}
.muted {
    color: #4d675e;
}
.section-label {
    text-transform: uppercase;
    color: #247556;
    font-size: 13px;
    letter-spacing: 0.14em;
    font-weight: bold;
}
.rule {
    height: 1px;
    background: #c9d6cf;
    margin: 32px 0;
}
.programs {
    background: #eaf0e8;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.card {
    background: white;
    padding: 30px;
    min-height: 240px;
    border-top: 5px solid #d2af53;
}
.card small {
    color: #49745b;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.card p {
    margin-bottom: 0;
}
.impact {
    background: #123d32;
    color: white;
}
.impact .section-label {
    color: #dfc478;
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 35px;
}
.step {
    border-top: 1px solid #93b49e;
    padding-top: 22px;
}
.num {
    color: #e2c269;
    font-size: 30px;
    font-weight: bold;
}
.partners {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}
.program-list {
    list-style: none;
    padding: 0;
}
.program-list li {
    border-bottom: 1px solid #c9d7cf;
    padding: 17px 0;
    font-weight: bold;
}
.contact {
    background: #dcca8c;
    padding: 58px 26px;
}
.contact .wrap {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.contact .button {
    background: #123d32;
    color: #fff;
}
.note {
    font-size: 14px;
    color: #435b50;
}
footer {
    background: #0b2923;
    color: #bcd1c3;
    padding: 25px 26px;
}
footer .inner {
    max-width: 1160px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
}
details {
    margin-top: 18px;
}
summary {
    cursor: pointer;
    font-weight: bold;
}
summary:focus-visible,
a:focus-visible {
    outline: 3px solid #f3d87b;
    outline-offset: 4px;
}
@media (max-width: 760px) {
    nav {
        align-items: flex-start;
        flex-direction: column;
    }
    nav .links {
        flex-wrap: wrap;
        gap: 12px 18px;
    }
    .hero-inner,
    .intro,
    .partners {
        grid-template-columns: 1fr;
    }
    .hero-inner {
        padding-top: 62px;
    }
    .hero-graphic {
        max-width: 300px;
        margin: auto;
    }
    .grid,
    .steps {
        grid-template-columns: 1fr;
    }
    .wrap {
        padding: 55px 22px;
    }
    .contact .wrap {
        display: block;
    }
    footer .inner {
        display: block;
    }

    
}
