/*
  Shared by the terms and privacy pages. Same palette as the front page, so a driver who taps
  a link from the footer — or an ad reviewer checking the policy — does not land somewhere that
  looks like a different company. It was dark until the site gained a light front page.

  Nothing is loaded from another host — no fonts, no analytics, no scripts.
*/
:root {
  --bg: #FFFFFF;
  --surface: #F5F8FD;
  --line: #E4EAF3;
  --text: #0E1A2B;
  --muted: #56677F;
  --accent: #2F62E8;
  --warn: #B4690E;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 680px; margin: 0 auto; padding: 30px 20px 70px; }
h1 { font-size: 26px; margin: 0 0 4px; letter-spacing: -0.01em; }
.updated { color: var(--muted); font-size: 13.5px; margin: 0 0 26px; }
h2 {
  font-size: 17px;
  margin: 32px 0 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
h2:first-of-type { border-top: 0; padding-top: 0; }
p, li { color: var(--muted); font-size: 15px; }
li { margin-bottom: 6px; }
strong, b { color: var(--text); }
.callout b { color: #402B08; }
.callout {
  background: #FDF3E2;
  border: 1px solid #F3DFBF;
  border-left: 3px solid var(--warn);
  color: #6B4A16;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 22px 0;
  font-size: 14.5px;
}
table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14.5px; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--text); font-size: 13px; }
td { color: var(--muted); }
a { color: var(--accent); }
footer {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 13.5px;
}

/* Added when the site gained a front page: every legal page needs a way back to it, both
   for a reader who arrived from the footer and for an ad reviewer checking the policy is
   part of a real site rather than a stranded document. */
.home {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}
.home:hover { color: var(--text); }
