/* Privacy page. External, not inline: the site CSP in Security Standard §7.1 allows
   styles from 'self' and Google Fonts only, so an inline <style> would be blocked once
   the policy enforces. Brand values from the Branding & Digital Design Standard. */

:root {
  --blue: #005DFA;
  --ink: #16181d;
  --muted: #5b6270;
  --paper: #ffffff;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.6 "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 22px 72px;
}

h1, h2 {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: 40px; margin: 8px 0 4px; }
h2 { font-size: 22px; margin: 36px 0 8px; }

p { margin: 0 0 14px; }

a { color: var(--blue); text-underline-offset: 2px; }

.home { margin: 0 0 24px; font-size: 15px; }
.home a { text-decoration: none; font-weight: 600; }

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

@media (max-width: 480px) {
  body { font-size: 16px; }
  h1 { font-size: 32px; }
}
