/* NMC page theme (deep classic green) */
:root{
  --bg:#0f3a24;
  --bg-2:#103d28;
  --accent:#3d8b44;
  --accent-2:#6dbf73;
  --text:#0e2316;
  --white:#ffffff;
  --muted:#7aa38a;
  --card:#ffffff;
  --shadow:0 8px 24px rgba(0,0,0,.1);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:#243224;background:#f7faf8}
.wrap{max-width:1120px;margin:0 auto;padding:0 20px}
.topbar{background:#0c2e1d;border-bottom:1px solid rgba(255,255,255,.08);position:sticky;top:0;z-index:20}
.topbar .wrap{display:flex;align-items:center;gap:20px;justify-content:space-between;padding:10px 20px}
.brand{display:flex;align-items:center;gap:10px;color:#e9f4eb;text-decoration:none}
.brand-mark{width:36px;height:36px;border-radius:50%;background:#3d8b44;object-fit:contain}
.brand-text{font-weight:800;letter-spacing:.5px}
.brand-sub{opacity:.8;font-size:12px}
.nav a{color:#e9f4eb;text-decoration:none;padding:8px 10px;border-radius:10px}
.nav a:hover,.nav a.active{background:rgba(255,255,255,.08)}

.hero{position:relative;min-height:54vh;display:grid;place-items:center;background:#123c26 url('../assets/hero-bg.jpg') center/cover no-repeat}
.hero .overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(16,46,32,.65),rgba(16,46,32,.85))}
.hero-inner{position:relative;text-align:center;color:#fff;padding:40px 20px}
.hero h1{margin:0 0 10px;font-size:42px;line-height:1.15}
.lead{max-width:780px;margin:0 auto 18px;opacity:.95}
.cta{display:inline-block;background:var(--accent);color:#fff;text-decoration:none;padding:12px 20px;border-radius:999px;font-weight:600;box-shadow:var(--shadow)}
.cta:hover{background:var(--accent-2)}

.card{background:var(--card);box-shadow:var(--shadow);border-radius:16px;padding:24px;margin:28px 0}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.grid3 .card h3{margin-top:0}
.list ul{margin:0;padding-left:18px}
.list li{margin:6px 0}

.siblings{padding:4px 0 32px}
.muted{color:#5e7e6a;margin:0 0 10px}
.pills{display:flex;flex-wrap:wrap;gap:10px}
.pill{background:#e9f4eb;color:#12452b;text-decoration:none;padding:10px 14px;border-radius:999px;font-weight:600}
.pill:hover{background:#dbefe1}

.footer{background:#0c2e1d;color:#e9f4eb;margin-top:30px}
.footer .wrap{padding:20px}
@media (max-width:900px){
  .grid3{grid-template-columns:1fr}
  .hero h1{font-size:34px}
}
