/* Base reset and typography */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111111;
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  color: #2262A7;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header & Navigation */
header {
  border-bottom: 1px solid #e5e5e5;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2262A7;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #555555;
}

nav {
  position: relative;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 6px 8px;
}

.nav-toggle-label span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background-color: #111111;
  border-radius: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111111;
  padding: 6px 10px;
  border-radius: 4px;
}

nav a:hover,
nav a:focus {
  background-color: rgba(34, 98, 167, 0.08);
  text-decoration: none;
}

nav a.admin-link {
  border: 1px solid #2262A7;
  color: #2262A7;
}

nav a.admin-link:hover,
nav a.admin-link:focus {
  background-color: #2262A7;
  color: #ffffff;
}

nav a.active {
  color: #2262A7;
  background-color: rgba(34, 98, 167, 0.08);
  text-decoration: none;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #2262A7 0%, #1b4c7f 45%, #6CB22C 100%);
  color: #ffffff;
  padding: 48px 0 40px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-main {
  flex: 2 1 260px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badge {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-color: rgba(0, 0, 0, 0.1);
}

.hero-side {
  flex: 1.2 1 230px;
}

.hero-feature-card {
  background-color: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 18px 18px 16px;
  color: #111111;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.hero-feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2262A7;
}

.hero-feature-list {
  list-style: none;
  font-size: 0.85rem;
}

.hero-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.hero-feature-dot {
  margin-top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #6CB22C;
  flex-shrink: 0;
}

/* Sections */
main {
  padding: 32px 0 40px;
}

.section {
  margin-bottom: 32px;
}

.section-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2262A7;
  margin-bottom: 8px;
}

.section-subheading {
  font-size: 0.95rem;
  color: #444444;
  margin-bottom: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 16px 14px;
  background-color: #ffffff;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2262A7;
}

.card-body {
  font-size: 0.9rem;
  color: #333333;
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: rgba(108, 178, 44, 0.08);
  color: #326b11;
  margin-bottom: 6px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 24px;
}

.contact-card {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 16px 14px;
  background-color: #f9fafb;
}

.contact-item {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.contact-label {
  font-weight: 600;
  color: #2262A7;
}

.muted {
  color: #555555;
  font-size: 0.85rem;
}

/* Policy Pages */
.page-hero {
  padding: 36px 0 24px;
  background-color: #f5f7fb;
  border-bottom: 1px solid #e3e7f0;
}

.page-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2262A7;
  margin-bottom: 6px;
}

.page-meta {
  font-size: 0.85rem;
  color: #555555;
}

.policy-content {
  padding: 28px 0 40px;
  font-size: 0.95rem;
}

.policy-content h2 {
  font-size: 1.1rem;
  margin-top: 18px;
  margin-bottom: 6px;
  color: #2262A7;
}

.policy-content h3 {
  font-size: 1rem;
  margin-top: 14px;
  margin-bottom: 4px;
  color: #333333;
}

.policy-content p {
  margin-bottom: 8px;
  color: #222222;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.policy-content li {
  margin-bottom: 4px;
}

.policy-note {
  font-size: 0.85rem;
  color: #555555;
  margin-top: 16px;
}

/* Footer */
footer {
  border-top: 1px solid #e5e5e5;
  padding: 18px 0 24px;
  background-color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #555555;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: #555555;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #2262A7;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 6px;
  }

  .nav-toggle-label {
    display: block;
  }

  nav ul {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 6px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 8px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 180px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    display: none;
  }

  .nav-toggle:checked + .nav-toggle-label + ul {
    display: flex;
  }

  /* Keep list markers within the content container on small screens */
  main ul,
  .policy-content ul {
    list-style-position: inside;
    padding-left: 0;
  }

  .hero {
    padding: 32px 0 28px;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  main {
    padding: 24px 0 32px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}


