:root {
  --bg: #e7e7e7;
  --text: #111111;
  --muted: #3d3d3d;
  --line: #b9b9b9;
  --accent: #111111;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.legal-page {
  width: min(820px, 100% - 2rem);
  margin: 2rem auto;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: #dedede;
}

.back-link {
  color: var(--muted);
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

h1 {
  margin: 1rem 0 0.2rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h2 {
  margin: 1.3rem 0 0.4rem;
  font-size: 1.1rem;
}

p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.effective-date {
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

a {
  color: var(--text);
}
