/* Base typography for legal document */
.legal-document h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

@media (max-width: 767px) {
  .legal-document h1 {
    font-size: 34px !important;
  }
}

.legal-document h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.legal-document h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

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

.legal-document ul,
.legal-document ol {
  line-height: 1.8;
  color: var(--text-secondary);
  padding-left: 1.5rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
}

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

.last-updated {
  font-style: italic;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.important-notice {
  padding: 1.5rem;
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--accent);
  margin: 2rem 0;
}

.important-notice p {
  margin-bottom: 0;
  color: var(--text-primary);
}