/* Theme adaptation for dark site */
.bg-light {
  background-color: var(--dark-surface-light) !important;
  color: var(--text-primary) !important;
}

body {
  color: var(--text-primary);
}

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

h2 {
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--dark-surface-light);
}

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

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

ul, ol {
  color: var(--text-secondary);
  line-height: 1.8;
}

ul li, ol li {
  margin-bottom: 0.5rem;
}

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

.effective-date {
  color: var(--text-tertiary);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.contact-info {
  background: var(--dark-surface);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-cyan);
  margin-top: 2rem;
}