:root {
  --cream: #F7F5EF;
  --text: #0E0E0E;
  --text-muted: #5A5751;
  --teal: #0A8A8C;
  --orange: #FF4B00;
  --border: #E5E0D5;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Heebo', sans-serif;
  line-height: 1.8;
}
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.75rem 5rem;
}
.back-link {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.back-link:hover { border-bottom-color: var(--teal); }
h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text);
  border-bottom: 3px solid var(--orange);
  padding-bottom: 0.8rem;
  display: inline-block;
}
h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  color: var(--teal);
}
p, li {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
ul {
  padding-inline-start: 1.5rem;
  margin-bottom: 0.9rem;
}
li { margin-bottom: 0.4rem; }
a { color: var(--orange); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }
