/* Base document styles */
body {
  color: white;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

@media (max-width: 767px) {
  h1 {
    font-size: 34px !important;
  }
}

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

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: white;
}

p {
  line-height: 1.8;
  color: white;
}

ul, ol {
  line-height: 1.8;
  color: white;
}

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

strong {
  color: white;
  font-weight: 600;
}

.highlight-box {
  background: var(--dark-card);
  border-left: 4px solid var(--accent);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.highlight-box p {
  margin-bottom: 0;
  color: white;
}

/* Override light backgrounds for dark theme */
.bg-light {
  background-color: var(--dark-lighter) !important;
  color: white !important;
}

/* Links styling */
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
}