.legal-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.legal-page h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 48px;
}
.legal-page section {
  margin-bottom: 36px;
}
.legal-page h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.legal-page h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 8px;
}
.legal-page p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-page ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}
.legal-page ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.legal-page ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-dim);
}
.legal-page a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-page a:hover {
  color: var(--accent-hover);
}
@media (max-width: 640px) {
  .legal-page {
    padding: 120px 20px 60px;
  }
  .legal-page h1 {
    font-size: 28px;
  }
}
