:root { color-scheme: light; font-family: system-ui, sans-serif; color: #182326; background: #f6f8f7; }
* { box-sizing: border-box; }
body { margin: 0; line-height: 1.55; }
.wrap { width: min(1100px, calc(100% - 36px)); margin: 0 auto; }
header { background: #123b3a; color: white; }
.top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; }
.brand { font-size: 1.3rem; font-weight: 800; letter-spacing: -.03em; }
nav { display: flex; flex-wrap: wrap; gap: 12px 20px; }
a { color: #086f64; }
header a { color: white; text-decoration: none; }
main { min-height: 65vh; padding: 42px 0 72px; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; }
h2 { line-height: 1.2; }
p { max-width: 72ch; }
.hero { padding: 40px; border-radius: 18px; background: #def2eb; margin-bottom: 42px; }
.hero p { font-size: 1.15rem; }
.hero a { display: inline-block; padding: 12px 18px; border-radius: 9px; background: #146b5f; color: white; text-decoration: none; font-weight: 700; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: #146b5f; font-size: .8rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card { padding: 22px; border: 1px solid #d8e4df; border-radius: 14px; background: white; }
.card h2 { margin-top: 0; }
.card ul { padding-left: 20px; }
.card li { margin: 8px 0; }
.note { color: #435c58; }
section { margin-bottom: 34px; }
dl { display: grid; grid-template-columns: 120px 1fr; gap: 8px 18px; }
dt { font-weight: 700; }
dd { margin: 0; overflow-wrap: anywhere; }
footer { padding: 28px 0; background: #e5eeea; }
@media (max-width: 760px) { .top { align-items: flex-start; flex-direction: column; } .grid { grid-template-columns: 1fr; } .hero { padding: 26px; } dl { grid-template-columns: 1fr; } dt { margin-top: 10px; } }
