/* Styling for the standalone legal pages (/privacy, /terms).
   Kept separate from the two apps' stylesheets: these pages ship no
   JavaScript and should not depend on a Vite build. Palette and type mirror
   the rest of the site. */

:root {
  --color-navy: #162e51;
  --color-primary: #005ea2;
  --color-text: #1b1b1b;
  --color-text-muted: #565c65;
  --color-border: #dfe1e2;
  --color-bg-surface: #f8f9fa;
  --font-sans: 'Arial', sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: #fff;
}

.top-bar {
  background: var(--color-navy);
  color: #fff;
  border-bottom: 4px solid #e21c3d;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
}
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px; font-weight: 600; }
.top-bar a:hover { color: #fff; text-decoration: underline; }
.top-bar-sep { color: rgba(255,255,255,0.45); margin: 0 8px; }
.top-bar-current { font-size: 18px; font-weight: 700; }

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

h1 {
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 6px;
  color: var(--color-navy);
}

.updated {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 28px;
}

h2 {
  font-size: 19px;
  margin: 34px 0 10px;
  color: var(--color-navy);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-border);
}

p, li { margin: 0 0 14px; }
ul { padding-left: 22px; }

a { color: var(--color-primary); }

strong { font-weight: 700; }

/* Pulled-out statement for the disclaimers that matter most. */
.callout {
  background: var(--color-bg-surface);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 4px 4px 0;
  padding: 14px 18px;
  margin: 0 0 20px;
}
.callout p:last-child { margin-bottom: 0; }

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 22px 24px 44px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--color-text-muted);
  text-align: center;
}
.site-footer a { color: var(--color-primary); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer-sep { margin: 0 8px; color: var(--color-border); }

@media (max-width: 600px) {
  body { font-size: 16px; }
  main { padding: 28px 18px 48px; }
  h1 { font-size: 25px; }
  h2 { font-size: 17.5px; }
  .top-bar { padding: 0 16px; }
}
