:root {
  --bg: #fef9f0;
  --ink: #1a1a2e;
  --accent: #e07b00;
  --soft: #f5e6d3;
  --link: #2a4d7f;
  --muted: #6b6b80;
  --max: 720px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}
header, main, footer { max-width: var(--max); margin: 0 auto; padding: 24px; }
header { padding-top: 48px; padding-bottom: 16px; text-align: center; }
header img.banner { max-width: 100%; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
header nav { margin-top: 24px; font-size: 14px; }
header nav a { color: var(--link); text-decoration: none; margin: 0 12px; }
header nav a:hover { text-decoration: underline; }
h1 { font-size: 36px; line-height: 1.2; margin: 32px 0 16px; }
h2 { font-size: 26px; margin: 40px 0 12px; }
h3 { font-size: 20px; margin: 24px 0 8px; }
p, ul, ol, table { margin-bottom: 16px; }
ul, ol { padding-left: 24px; }
li { margin-bottom: 6px; }
a { color: var(--link); }
a.cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin: 12px 0;
}
a.cta:hover { background: #c66800; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--soft); }
th { background: var(--soft); font-weight: 600; }
.tagline {
  font-size: 19px;
  color: var(--muted);
  margin: 8px 0 24px;
}
.lede { font-size: 19px; margin-bottom: 24px; }
.box {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq dt { font-weight: 600; margin-top: 16px; }
.faq dd { margin-left: 0; color: var(--muted); margin-bottom: 12px; }
footer {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 48px;
  border-top: 1px solid var(--soft);
  margin-top: 48px;
  padding-top: 32px;
}
footer a { color: var(--muted); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  background: var(--soft);
  color: var(--accent);
  margin-right: 6px;
}
@media (max-width: 600px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  body { font-size: 16px; }
  header { padding-top: 24px; }
}
