/* Typography adjustments for legal document */
.terms-container {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.terms-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.terms-container h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.terms-container h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
}

.terms-container p {
  margin-bottom: 1rem;
}

.terms-container ul,
.terms-container ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.terms-container li {
  margin-bottom: 0.5rem;
}

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

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

.section-divider {
  border-top: 1px solid var(--border-color);
  margin: 2rem 0;
  opacity: 0.3;
}