:root {
  color-scheme: light;
  --background: #f4f7f5;
  --card: #ffffff;
  --ink: #17231d;
  --muted: #516158;
  --brand: #0c6848;
  --brand-dark: #084b35;
  --border: #d6e0da;
  --notice: #eef8f3;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--background); color: var(--ink); font-family: Arial, Helvetica, sans-serif; line-height: 1.65; margin: 0; }
a { color: var(--brand-dark); }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible { outline: 3px solid #f0a202; outline-offset: 3px; }
.site-header { background: var(--brand-dark); color: #ffffff; }
.header-inner, main, .footer-inner { margin: 0 auto; max-width: 980px; padding: 0 24px; }
.header-inner { align-items: center; display: flex; gap: 24px; justify-content: space-between; min-height: 72px; }
.brand { color: #ffffff; font-size: 1.08rem; font-weight: 700; text-decoration: none; }
.site-nav { display: flex; flex-wrap: wrap; gap: 16px; }
.site-nav a { color: #ffffff; font-weight: 600; }
main { padding-bottom: 64px; padding-top: 48px; }
.hero { margin-bottom: 32px; }
.eyebrow { color: var(--brand); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.08; margin: 8px 0 18px; }
h2 { font-size: 1.5rem; line-height: 1.25; margin-top: 2rem; }
h3 { font-size: 1.1rem; }
.lead { color: var(--muted); font-size: 1.18rem; max-width: 760px; }
.card, .legal-document { background: var(--card); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 8px 24px rgba(15, 45, 31, .06); }
.legal-document { padding: clamp(24px, 5vw, 52px); }
.legal-document section + section { border-top: 1px solid var(--border); margin-top: 28px; padding-top: 4px; }
.legal-document li + li { margin-top: 8px; }
.meta { color: var(--muted); }
.card-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 24px; }
.card h2 { margin-top: 0; }
.card-link { font-weight: 700; }
.notice { background: var(--notice); border-left: 5px solid var(--brand); padding: 16px 18px; }
.button { background: var(--brand); border-radius: 8px; color: #ffffff; display: inline-block; font-weight: 700; padding: 11px 17px; text-decoration: none; }
.button:hover { background: var(--brand-dark); }
.site-footer { background: #e3ebe6; border-top: 1px solid var(--border); color: var(--muted); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; padding-bottom: 28px; padding-top: 28px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
@media (max-width: 720px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding-bottom: 18px; padding-top: 18px; }
  .card-grid { grid-template-columns: 1fr; }
  main { padding-top: 32px; }
}
