
/* Reset and base styles */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: #1d72b8;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
}

header {
  background: #003366;
  color: #fff;
  padding: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links li a:hover, .nav-links li a:focus {
  color: #ffcc00;
}

.hero {
  background: linear-gradient(120deg, #e3f0ff 0%, #f8fafc 100%);
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
}

.hero-logo {
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #003366;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.cta-button {
  display: inline-block;
  background: #003366;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.cta-button:hover, .cta-button:focus {
  background: #0055a5;
  color: #ffcc00;
}

.disclaimer {
  background: #fff3cd;
  color: #856404;
  border-left: 5px solid #ffcc00;
  padding: 1rem 1.5rem;
  margin: 1.5rem auto;
  max-width: 900px;
  font-size: 1rem;
  border-radius: 4px;
}

.services-section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
}

.services-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.services-table th, .services-table td {
  padding: 1rem;
  border-bottom: 1px solid #e3e3e3;
  text-align: left;
}

.services-table th {
  background: #e3f0ff;
  color: #003366;
  font-weight: bold;
}

.services-table tr:last-child td {
  border-bottom: none;
}

.service-details {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.service-details h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.service-details article {
  margin-bottom: 2rem;
}

.service-details h3 {
  color: #0055a5;
  margin-top: 1.5rem;
}

.service-details ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.resources-section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
}

.resources-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.resource-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.resource-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 1rem 1.5rem;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 350px;
}

.resource-card h3 {
  color: #0055a5;
  margin-top: 0;
}

.resource-card ul {
  margin: 0.5rem 0 0 1.2rem;
}

.faq-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.faq-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.faq-list {
  margin: 0;
  padding: 0;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  color: #0055a5;
  margin-bottom: 0.3rem;
}

.about-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.about-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.contact-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.contact-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 500;
}

.contact-form input, .contact-form textarea {
  padding: 0.6rem;
  border: 1px solid #b3c6e0;
  border-radius: 4px;
  font-size: 1rem;
  background: #f8fafc;
  color: #222;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid #003366;
}

.captcha-placeholder {
  background: #e3f0ff;
  color: #003366;
  padding: 0.5rem;
  border-radius: 4px;
  text-align: center;
  font-size: 0.95rem;
}

.contact-note {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.5rem;
}

.accessibility-section, .privacy-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.accessibility-section h2, .privacy-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

footer {
  background: #003366;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links a {
  color: #ffcc00;
  margin: 0 0.3rem;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .navbar, .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .resource-cards {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .services-table th, .services-table td {
    padding: 0.6rem;
    font-size: 0.95rem;
  }
  .resource-card {
    padding: 0.7rem 1rem;
    min-width: 180px;
    max-width: 100%;
  }
  .service-details, .about-section, .faq-section, .contact-section, .accessibility-section, .privacy-section {
    padding: 0.7rem;
  }
}
