/* ── Legal Pages (Privacy Policy, Terms) ── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 32px 80px;
}

.legal-page h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 6px;
}

.legal-effective {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
}

.legal-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-page p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.legal-page ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.legal-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-page strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-page a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-page a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 100px 20px 60px;
  }

  .legal-page h1 {
    font-size: 28px;
  }

  .legal-page h2 {
    font-size: 19px;
  }
}
