* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #333333; /* Charcoal gray */
  background-color: #FFFFFF; /* Soft white */
  line-height: 1.7;
}
.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}
.text-charcoal {
  color: #333333;
}
.text-green {
  color: #1A3C34; /* Deep green */
}
.text-coral {
  color: #FF6F61; /* Coral */
}
.bg-green {
  background-color: #1A3C34;
}
.bg-white {
  background-color: #FFFFFF;
}
.bg-gray-100 {
  background-color: #F3F4F6; /* Slightly darker gray for tables */
}
.bg-yellow-50 {
  background-color: #FFFBEB;
}
.text-yellow-800 {
  color: #78350F;
}
.text-red-600 {
  color: #DC2626;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.text-5xl {
  font-size: 3rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-sm {
  font-size: 0.875rem;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
header {
  background-color: #1A3C34;
  color: #FFFFFF;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}
nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
nav a:hover, nav a:focus {
  color: #FF6F61;
  outline: none;
}
.text-center {
  text-align: center;
}
.rounded {
  border-radius: 0.25rem;
}
.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease;
}
.list-disc {
  list-style-type: disc;
}
.pl-6 {
  padding-left: 1.5rem;
}
.space-y-12 > * + * {
  margin-top: 3rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  border: 1px solid #E5E7EB;
  padding: 0.75rem;
  text-align: left;
}
th {
  background-color: #F3F4F6; /* Match bg-gray-100 */
  font-weight: 600;
}
.faq-item {
  background-color: #E5E7EB; /* Distinct light gray for FAQs */
  padding: 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.25rem;
}
.card {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
footer {
  background-color: #1A3C34;
  color: #FFFFFF;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .text-5xl {
    font-size: 2.25rem;
  }
  .text-4xl {
    font-size: 1.875rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .px-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  table {
    display: block;
    overflow-x: auto;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #1F2937;
    color: #F3F4F6;
  }
  .bg-white, .card {
    background-color: #374151;
  }
  .text-charcoal {
    color: #F3F4F6;
  }
  .text-green {
    color: #34D399;
  }
  .text-coral {
    color: #F87171;
  }
  .bg-green {
    background-color: #047857;
  }
  th {
    background-color: #4B5563;
  }
  .faq-item {
    background-color: #4B5563; /* Dark mode FAQ background */
    border-color: #6B7280;
  }
  footer {
    background-color: #047857;
  }
}
@media (prefers-contrast: high) {
  body {
    background-color: #FFFFFF;
    color: #000000;
  }
  .text-coral {
    color: #C53030;
  }
  .text-coral:hover {
    color: #9B2C2C;
  }
  .bg-green {
    background-color: #064E3B;
  }
  .faq-item {
    background-color: #E5E7EB; /* High contrast FAQ background */
    border: 2px solid #000000; /* Stronger borders */
  }
}