/* Typography adjustments for legal document */
body {
  line-height: 1.8;
}

h1 {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1rem;
}

h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

h3 {
  color: var(--text-secondary);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  color: var(--text-secondary);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

ul, ol {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  padding-left: 1.75rem;
}

li {
  margin-bottom: 0.5rem;
}

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

.legal-notice {
  background: var(--dark-card);
  border-left: 4px solid var(--primary);
  padding: 1.25rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
}

.legal-notice p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.section-divider {
  height: 1px;
  background: var(--border-color);
  margin: 3rem 0;
}

/* Table styling for legal documents */
.terms-table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
}

.terms-table th,
.terms-table td {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.terms-table th {
  background: var(--dark-card);
  color: var(--text-primary);
  font-weight: 600;
}

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