
:root{--blue:#1F4E79;--green:#3A9D3A;--orange:#F78A1D;--text:#333;--muted:#6f6f6f;--soft:#e9eef3;--bg:#ffffff}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--text);font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial}
header{background:#fff;border-bottom:1px solid var(--soft);position:sticky;top:0;z-index:10}
header .wrap{max-width:1080px;margin:auto;display:flex;gap:18px;align-items:center;padding:14px 20px}
nav a{color:var(--blue);text-decoration:none;margin-right:14px;border-bottom:2px solid transparent;padding-bottom:6px}
nav a:hover, nav a[aria-current="page"]{border-color:var(--orange)}
main .wrap{max-width:1080px;margin:auto;padding:22px}
.hero{padding:56px 0;border-bottom:1px solid var(--soft)}
.hero h1{color:var(--blue);margin:0 0 10px;font-size:clamp(22px,3.2vw,34px)}
.hero p{color:var(--muted);max-width:900px}
section h2{color:var(--blue);margin-top:8px}
.grid{display:grid;gap:18px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.card{background:#fff;border:1px solid var(--soft);border-radius:12px;padding:16px}
.cta{display:inline-block;background:var(--orange);color:#fff;padding:10px 16px;border-radius:8px;text-decoration:none}
figure{margin:14px 0}
figure img{width:100%;height:auto;border-radius:10px;border:1px solid var(--soft)}
figcaption{font-size:14px;color:var(--muted)}
.details{border:1px solid var(--soft);border-radius:12px;background:#fff}
details{border-bottom:1px solid var(--soft);padding:12px}
details:last-child{border-bottom:none}
summary{font-weight:600;color:var(--blue);cursor:pointer}
footer{background:#fff;border-top:1px solid var(--soft);margin-top:40px}
footer .wrap{max-width:1080px;margin:auto;padding:22px}
