body {
  margin:0;
  font-family:'Segoe UI', sans-serif;
}

/* GOV HEADER */
.gov-header {
  display:flex;
  align-items:center;
  padding:10px 20px;
  background:#fff;
  border-bottom:2px solid #ddd;
}

.logo {
  width:50px;
  margin-right:10px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: white;
  display:flex;
  justify-content:space-between;
  padding:15px 30px;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.navbar ul {
  display:flex;
  gap:20px;
  list-style:none;
}

.navbar a {
  text-decoration:none;
  color:#333;
}

.highlight {
  color:#ff6600;
}

/* HERO */
.hero {
  background: linear-gradient(to right,#ff9933,#fff,#138808);
  text-align:center;
  padding:100px 20px;
}

/* BUTTON */
.btn-primary {
  background:#ff6600;
  color:#fff;
  padding:12px 25px;
  border-radius:8px;
  text-decoration:none;
}

/* STATS */
.stats {
  text-align:center;
  padding:50px;
}

.stats-box {
  display:flex;
  justify-content:center;
  gap:50px;
}

/* COUNTDOWN */
.countdown {
  text-align:center;
  background:#0d47a1;
  color:white;
  padding:50px;
}

/* SECTION */
.section {
  padding:60px 20px;
  text-align:center;
}

.section.alt {
  background:#f0f0f0;
}

/* DETAILED STATS */
.stats-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  padding:40px;
}

.stat-box {
  background:white;
  padding:25px;
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.stat-box h3 {
  color:#ff6600;
}

/* CTA */
.cta-strong {
  background:#0d47a1;
  color:white;
  text-align:center;
  padding:60px;
}

.big {
  font-size:18px;
}

/* FOOTER */
footer {
  background:#111;
  color:#fff;
  text-align:center;
  padding:20px;
}