/* Dark theme adjustments for legal pages */
.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.legal-section h3 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 500;
}

.legal-section h4 {
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.legal-section p {
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  line-height: 1.8;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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

.highlight-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--primary);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.contact-info {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.last-updated {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}