:root{
  --bg:#4e57d6;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --btn:#4e57d6;
  --btnText:#ffffff;
  --shadow:0 8px 24px rgba(0,0,0,.12);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{color:inherit; text-decoration:none}
.container{
  max-width: 430px;
  margin: 0 auto;
  padding: 18px 14px 24px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:#fff;
  margin-bottom:14px;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1.15;
}
.brand .title{
  font-weight:800;
  font-size:18px;
  letter-spacing:.2px;
}
.brand .subtitle{
  font-size:12px;
  opacity:.9;
}

.navlinks{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navlinks a{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
}
.navlinks a.active{
  background:#fff;
  color:#2b2f82;
  border-color:#fff;
}

.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}

.h1{
  font-size:18px;
  margin:0 0 4px;
  font-weight:800;
}
.lead{
  margin:0 0 12px;
  color: var(--muted);
  font-size:13px;
  line-height:1.55;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin: 10px 0 0;
}
.badge{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background:#f3f4f6;
  border:1px solid var(--line);
  color:#111827;
}

.section{
  margin-top: 12px;
  border-top:1px solid var(--line);
  padding-top: 12px;
}
.section h2{
  font-size:14px;
  margin:0 0 8px;
  font-weight:800;
}
.section p, .section li{
  font-size:13px;
  line-height:1.7;
  color:#111827;
}
.section ul{
  margin:8px 0 0 18px;
  padding:0;
}

.callout{
  margin-top:12px;
  padding:12px;
  border-radius:14px;
  border:1px dashed #c7d2fe;
  background:#eef2ff;
  font-size:13px;
  color:#1f2a6b;
  line-height:1.6;
}

.footer{
  margin-top:16px;
  text-align:center;
  color: rgba(255,255,255,.9);
  font-size:12px;
  padding: 14px 0 4px;
}
.footer a{
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .95;
}
.footer .links{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:8px;
}

/* Accordion (optional) */
.accordion{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.acc-item{
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}
.acc-btn{
  width:100%;
  text-align:left;
  padding:12px 12px;
  background:#fff;
  border:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  cursor:pointer;
  font-weight:700;
  font-size:13px;
}
.acc-icon{
  width:26px;
  height:26px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  background:#f9fafb;
  flex:0 0 auto;
}
.acc-panel{
  display:none;
  padding:0 12px 12px;
  color:#111827;
}
.acc-panel p, .acc-panel li{
  font-size:13px;
  line-height:1.7;
}
.acc-item.open .acc-panel{display:block}
.acc-item.open .acc-icon{background:#eef2ff; border-color:#c7d2fe}
.small{
  font-size:12px;
  color: var(--muted);
}
hr.soft{
  border:none;
  border-top:1px solid var(--line);
  margin: 12px 0;
}
