.legal-page {
  padding: 140px 0 80px;
}

.legal-page .container {
  max-width: 720px;
}

.legal-updated {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-page h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-page p {
  font-family: var(--font-body);
  color: #999;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.legal-page ul li {
  font-family: var(--font-body);
  color: #999;
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

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

.legal-page a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s;
}

.legal-page a:hover {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-body);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text);
}

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

  .legal-page h2 {
    margin-top: 36px;
  }
}
