/* Theme Variables Override */
.bg-light {
  background-color: var(--dark-lighter) !important;
  color: var(--text-primary) !important;
}

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

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

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

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

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

li {
  margin-bottom: 0.75rem;
}

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

.last-updated {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--dark-card);
  border-left: 3px solid var(--accent-primary);
  border-radius: 4px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.9;
}

/* Table Styling */
.table {
  color: var(--text-primary);
  border-color: var(--border-color);
  margin-bottom: 2rem;
}

.table-dark {
  --bs-table-bg: var(--dark-card);
  --bs-table-striped-bg: var(--dark-lighter);
  --bs-table-border-color: var(--border-color);
}

.table thead {
  background: var(--dark-card);
  border-bottom: 2px solid var(--border-color);
  font-weight: 600;
}

.table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

/* Contact Info Box */
.contact-box {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.contact-box h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.contact-box p {
  margin-bottom: 0.5rem;
}

/* Highlight Important Info */
.important-notice {
  background: var(--dark-card);
  border-left: 4px solid var(--accent-primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.important-notice p:last-child {
  margin-bottom: 0;
}