/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.75;
  color: #1f2933;
  background: #f4f6f8;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

/* ===== GOVERNMENT BANNER ===== */
.gov-banner {
  background: #e8eef3;
  font-size: 13px;
  padding: 8px 16px;
  text-align: center;
  border-bottom: 1px solid #d1d9e0;
}

/* ===== HEADER ===== */
.site-header {
  background: #0c2d48;
  color: white;
}

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

.site-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.site-search {
  font-size: 14px;
  opacity: 0.8;
}

/* ===== NAVIGATION ===== */
.main-nav {
  background: #ffffff;
  border-bottom: 1px solid #dce3ea;
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 14px 0;
}

.main-nav a {
  color: #0c2d48;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.main-nav a:hover {
  color: #0066a1;
}

/* ===== HERO ===== */
.hero {
  background: #ffffff;
  padding: 60px 0 50px 0;
  border-bottom: 1px solid #e2e8f0;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #0c2d48;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 18px;
  color: #374151;
  max-width: 760px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 0;
  background: #ffffff;
}

.section:nth-child(even) {
  background: #f9fbfd;
}

h2 {
  font-family: Georgia, serif;
  font-size: 26px;
  margin-bottom: 16px;
  color: #0c2d48;
}

p {
  font-size: 16px;
  margin-bottom: 18px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0c2d48;
  color: white;
  padding: 40px 0;
  text-align: center;
  font-size: 13px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  h2 {
    font-size: 22px;
  }

  .section {
    padding: 40px 0;
  }
}
