:root {
  --navy: #0B1A33;
  --gold: #C6A15B;
  --text-dark: #1A2233;
  --text-muted: #5B6478;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #FDFCFA;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
}
h1 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 24px;
}
h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 32px;
  margin-bottom: 8px;
}
p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
