/* Simple modern layout with blue and silver palette */
:root{
  --blue:#0b74de;
  --blue-dark:#0757a0;
  --silver:#c7c9cc;
  --bg:#f6f7f9;
  --text:#0f1724;
  --muted:#6b7280;
}
*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; color:var(--text); background:var(--bg); line-height:1.5}
.container{max-width:980px;margin:0 auto;padding:24px}
.site-header{background:linear-gradient(90deg,var(--blue),var(--blue-dark));color:white;padding:12px 0}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.brand{font-weight:700;font-size:1.25rem;color:white;text-decoration:none}
.nav a{color:rgba(255,255,255,0.95);text-decoration:none;margin-left:16px;font-weight:600}
.main-content{padding:48px 24px}
.hero{background:linear-gradient(180deg,rgba(11,116,222,0.06),transparent);padding:36px;border-radius:12px;margin-bottom:24px}
.hero h1{margin:0 0 8px;font-size:2rem}
.lead{color:var(--muted);margin:0 0 12px}
.cta{display:inline-block;background:var(--blue);color:white;padding:10px 16px;border-radius:8px;text-decoration:none;font-weight:600}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.card{background:white;padding:18px;border-radius:10px;box-shadow:0 6px 18px rgba(11,116,222,0.06);border:1px solid var(--silver)}
.card h2{margin-top:0}
.doc{background:white;padding:28px;border-radius:10px;border:1px solid var(--silver);box-shadow:0 6px 18px rgba(3,12,34,0.04)}
.site-footer{padding:18px 0;margin-top:32px;border-top:1px solid rgba(15,23,36,0.04)}
.site-footer a{color:var(--blue);text-decoration:none}
@media (max-width:600px){.header-inner{flex-direction:column;align-items:flex-start}.nav a{margin-left:0;margin-right:12px;margin-top:8px}}
