/* Shared styling for the privacy policy and terms pages. Deliberately plain and
   highly readable — these are for adults, not toddlers. */

:root {
  --ink: #34314C;
  --muted: #6f6580;
  --accent: #E8557F;
  --paper: #FFF8E1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  padding: 40px 20px 90px;
}

main { max-width: 760px; margin: 0 auto; }

.brand {
  display: inline-block;
  font-size: 15px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  text-decoration: none; margin-bottom: 26px;
}

h1 { font-size: clamp(30px, 5vw, 42px); line-height: 1.15; margin-bottom: 8px; }
h2 {
  font-size: clamp(20px, 3vw, 25px);
  margin: 38px 0 10px;
  padding-top: 18px;
  border-top: 2px solid #EFE3C4;
}
h3 { font-size: 18px; margin: 22px 0 6px; }

p, li { margin-bottom: 12px; }
ul, ol { padding-left: 22px; }

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

.callout {
  background: #fff;
  border-left: 5px solid var(--accent);
  border-radius: 0 14px 14px 0;
  padding: 16px 20px;
  margin: 22px 0;
}
.callout strong { color: var(--accent); }

a { color: #C2185B; }

table { width: 100%; border-collapse: collapse; margin: 16px 0; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #EFE3C4; vertical-align: top; }
th { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

footer {
  max-width: 760px; margin: 50px auto 0;
  padding-top: 20px; border-top: 2px solid #EFE3C4;
  color: var(--muted); font-size: 15px;
}
footer a { margin-right: 18px; }
