:root {
  --navy: #0D2B3D;
  --navy-deep: #071620;
  --mid-blue: #2A5F82;
  --blue-accent: #3A7CA5;
  --gold: #C9A84C;
  --gold-light: #F0D98C;
  --cream: #F4EFE3;
  --text-muted: #6D7A87;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: -apple-system, "Open Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

header.site-header {
  display: flex;
  justify-content: center;
  padding: 40px 24px 8px;
}
header.site-header img { height: 64px; }

h1, h2, h3 {
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-weight: 800;
  color: var(--navy);
}

h1 { font-size: 30px; margin-bottom: 6px; }
.subtitle { color: var(--text-muted); margin-top: 0; margin-bottom: 40px; }

.updated { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }

section { margin-bottom: 36px; }

h2 { font-size: 20px; margin-bottom: 8px; }

p { margin: 0 0 8px; }

.card {
  background: #fff;
  border: 1px solid rgba(13,43,61,0.08);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 16px;
}

.faq-q {
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 4px;
}
.faq-a { color: #33424C; margin: 0; }

.cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 800;
  font-family: Montserrat, sans-serif;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 8px;
}

.contact-box {
  background: var(--navy);
  color: var(--cream);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.contact-box a { color: var(--gold-light); font-weight: 700; text-decoration: none; }

footer {
  text-align: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(13,43,61,0.1);
  color: var(--text-muted);
  font-size: 13px;
}
footer a { color: var(--mid-blue); text-decoration: none; margin: 0 8px; }
footer a:hover { text-decoration: underline; }

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--mid-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
