:root {
  --navy: #001f4d;
  --navy-2: #14366f;
  --text: #1f2937;
  --muted: #5b6472;
  --bg: #f5f7fb;
  --card: #ffffff;
  --border: #dde5ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a { color: var(--navy-2); }
.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.legal-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-nav a,
.site-footer a {
  color: #fff;
  text-decoration: none;
}

.legal-nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.legal-main {
  padding: 28px 0 50px;
}

.hero-card,
.content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 31, 77, 0.08);
}

.hero-card {
  padding: 28px;
  margin-bottom: 22px;
}

.content-card {
  padding: 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--navy-2);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.25;
}

h1 { margin: 0 0 10px; font-size: clamp(2rem, 3vw, 2.6rem); }
h2 { margin-top: 30px; margin-bottom: 10px; font-size: 1.3rem; }
h3 { margin-top: 18px; margin-bottom: 8px; font-size: 1.05rem; }

.intro, .updated, .muted {
  color: var(--muted);
}

.updated {
  margin: 10px 0 0;
  font-size: 0.95rem;
}

ul {
  padding-left: 22px;
}

li + li {
  margin-top: 6px;
}

.callout {
  background: #eef4ff;
  border-left: 4px solid var(--navy-2);
  padding: 14px 16px;
  border-radius: 10px;
}

.placeholder {
  color: #c9d6ff;
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
  margin-top: 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 760px) {
  .legal-header__inner {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-card,
  .content-card {
    padding: 20px;
  }
}
