:root {
  --primary: #e95e25;
  --ink: #0b1c30;
  --muted: #64748b;
  --bg: #f8f9ff;
  --border: #e2e8f0;
}

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

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-header img {
  height: 40px;
  width: auto;
}

.back {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

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

main {
  padding: 3rem 0 4rem;
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.6rem;
}

p,
li {
  color: var(--muted);
}

ul {
  padding-left: 1.25rem;
  margin: 0.6rem 0;
}

li {
  margin: 0.35rem 0;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.legal-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.85rem;
}
