/* Minimal styles for legal document */
body {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
}

.bg-light {
  background-color: var(--dark-light) !important;
  color: var(--text) !important;
}

h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

ul, ol {
  color: var(--text-muted);
  line-height: 1.8;
  margin-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.effective-date {
  background: var(--dark-light);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
}

.effective-date p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

strong {
  color: var(--text);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2.5rem;
}