:root {
    --green: #5e9239;
    --green-dark: #365c20;
    --navy: #2c3e50;
    --text: #3d464d;
    --muted: #657078;
    --light: #f5f7f2;
    --line: #dfe6d8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    color: var(--text);
    background: #fff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
}
a { color: var(--green-dark); }
img { max-width: 100%; height: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.97);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.site-nav {
    max-width: 1120px;
    margin: auto;
    min-height: 78px;
    padding: .65rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.site-nav img { width: 247px; height: 70px; object-fit: contain; }
.site-nav-links { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.site-nav-links a { color: var(--navy); text-decoration: none; font-weight: 650; }
.site-nav-links a:hover { color: var(--green); }

.hero {
    color: #fff;
    background: linear-gradient(135deg, var(--navy), #4a7a2c);
    padding: 5.5rem 1.25rem;
}
.hero-inner { max-width: 900px; margin: auto; }
.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.hero h1 { max-width: 820px; font-size: clamp(2.15rem, 6vw, 3.6rem); line-height: 1.12; }
.hero p { max-width: 720px; margin-top: 1.25rem; font-size: 1.15rem; opacity: .94; }
.primary-cta {
    display: inline-block;
    margin-top: 1.75rem;
    padding: .9rem 1.35rem;
    border-radius: 999px;
    background: #fff;
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

.content { max-width: 920px; margin: auto; padding: 4rem 1.25rem; }
.content h2 { color: var(--navy); margin: 2.4rem 0 .8rem; font-size: 1.75rem; }
.content h3 { color: var(--navy); margin: 1.6rem 0 .55rem; }
.content p + p { margin-top: 1rem; }
.content ul { margin: .8rem 0 1.4rem 1.25rem; }
.content li + li { margin-top: .45rem; }
.intro { font-size: 1.12rem; color: #4d5961; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin: 1.5rem 0; }
.card { padding: 1.35rem; border: 1px solid var(--line); border-radius: 14px; background: var(--light); }
.card h3 { margin-top: 0; }
.process { counter-reset: step; list-style: none; margin-left: 0 !important; }
.process li { position: relative; padding: 1rem 1rem 1rem 3.5rem; border-bottom: 1px solid var(--line); }
.process li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: .25rem;
    top: .8rem;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    font-weight: 800;
}
.faq details { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; color: var(--navy); font-weight: 750; }
.faq details p { margin-top: .65rem; }
.article-image { display: block; width: min(100%, 760px); height: auto; object-fit: contain; margin: 0 auto 2rem; border-radius: 16px; }
.article-meta { margin: .75rem 0 1.5rem; color: var(--muted); font-weight: 650; }
.pager { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center; margin-top: 3rem; }
.pager a { padding: .8rem 1rem; border-radius: 9px; background: var(--green-dark); color: #fff; text-decoration: none; font-weight: 750; }
.pager .next { justify-self: end; }
.pager .archive { background: transparent; color: var(--green-dark); padding-inline: 0; }
.archive-list { list-style: none; margin-left: 0 !important; }
.archive-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.archive-list a { display: block; color: var(--navy); font-size: 1.08rem; font-weight: 750; text-decoration: none; }
.archive-list time { color: var(--muted); font-size: .9rem; }

.site-footer { padding: 2rem 1.25rem; text-align: center; background: var(--navy); color: #fff; }
.site-footer a { color: #d8efc8; margin: 0 .55rem; }
.disclaimer { max-width: 850px; margin: 1rem auto 0; color: #d7dde1; font-size: .82rem; }

@media (max-width: 700px) {
    .site-nav { align-items: flex-start; }
    .site-nav img { width: 176px; height: 50px; }
    .site-nav-links { justify-content: flex-end; gap: .7rem; font-size: .88rem; }
    .hero { padding: 4rem 1.25rem; }
    .cards { grid-template-columns: 1fr; }
    .pager { grid-template-columns: 1fr 1fr; }
    .pager .archive { grid-column: 1 / -1; grid-row: 1; text-align: center; }
}
