/* Legal pages (Privacy Policy, Terms of Service) */
.legal-page {
  padding: 120px 0 80px;
  min-height: calc(100vh - 120px);
}

.legal-header {
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-content {
  max-width: 720px;
}

.legal-content section {
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
}

.legal-content li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.legal-content a {
  color: var(--amber);
  transition: opacity 0.2s;
}

.legal-content a:hover {
  opacity: 0.8;
}
