
:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --panel: #ffffff;
  --text: #172033;
  --muted: #5d677a;
  --brand: #174ea6;
  --brand-dark: #0f3674;
  --border: #dfe5ef;
  --success: #0f7a3a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: var(--brand); }
.header {
  background: linear-gradient(135deg, #102345, #174ea6);
  color: white;
  padding: 56px 20px;
}
.container { max-width: 980px; margin: 0 auto; padding: 0 20px; }
.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.nav a { color: white; text-decoration: none; font-weight: 600; opacity: 0.92; }
.nav a:hover { text-decoration: underline; }
h1 { margin: 0 0 16px; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05; }
h2 { margin-top: 0; font-size: 1.7rem; }
h3 { margin-bottom: 8px; }
.lede { max-width: 760px; font-size: 1.16rem; opacity: 0.95; }
.main { padding: 36px 0 56px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card, form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(20, 35, 60, 0.06);
}
.card ul { padding-left: 20px; }
.badge { display: inline-block; background: #eaf1ff; color: var(--brand-dark); border-radius: 999px; padding: 5px 10px; font-weight: 700; font-size: 0.85rem; }
.form-grid { display: grid; gap: 14px; }
label { font-weight: 700; display: block; margin-bottom: 6px; }
input, textarea {
  width: 100%;
  padding: 12px 13px;
  border-radius: 10px;
  border: 1px solid #cfd7e6;
  font: inherit;
  background: white;
}
textarea { min-height: 120px; resize: vertical; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; }
.checkbox-row input { width: auto; margin-top: 5px; }
.checkbox-row label { font-weight: 500; margin: 0; }
.disclosure { color: var(--muted); font-size: 0.94rem; }
button, .button {
  display: inline-block;
  background: var(--brand);
  color: white;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}
button:hover, .button:hover { background: var(--brand-dark); }
.notice { border-left: 4px solid var(--brand); padding: 12px 14px; background: #eef4ff; border-radius: 10px; }
.success { display: none; color: var(--success); font-weight: 700; }
.footer { border-top: 1px solid var(--border); padding: 28px 0; color: var(--muted); background: white; }
.footer .links { display: flex; gap: 14px; flex-wrap: wrap; }
.policy section { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 22px; margin: 18px 0; }
.evidence-table { width: 100%; border-collapse: collapse; background: white; overflow: hidden; border-radius: 12px; }
.evidence-table th, .evidence-table td { text-align: left; padding: 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.evidence-table th { background: #eef4ff; }
