/* Legal Pages Enhancement - Privacy & Terms */
.privacy-policy {
  max-width: 56rem; /* 896px - optimal reading width */
  margin: 0 auto;
}

.privacy-policy h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.privacy-policy h2,
.privacy-policy h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.privacy-policy p {
  font-size: 1.0625rem; /* 17px - optimal reading */
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-policy ul {
  font-size: 1rem;
  line-height: 1.7;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-policy li {
  margin-bottom: 0.5rem;
}

.privacy-policy strong {
  font-weight: 600;
}

.privacy-policy a {
  color: var(--primary-500, #6366f1);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.privacy-policy a:hover {
  color: var(--primary-600, #4f46e5);
}

/* Article spacing */
.privacy-policy article,
.privacy-policy div[data-ns-animate] {
  margin-bottom: 3rem;
}

/* Improve readability in dark mode */
@media (prefers-color-scheme: dark) {
  .privacy-policy {
    color: rgba(255, 255, 255, 0.85);
  }
}

