body {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f9ff;
  color: #333;
}

/* Hero background */
.hero {
  background: url('images/hero-image.jpg') no-repeat center top;
  background-size: cover;
  position: relative;
  height: 500px;
}

/* Top header (inside hero) */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.branding {
  display: flex;
  align-items: center;
}
.seal {
  height: 100px;
  width: auto;
  margin-right: 1.5rem;
}
.branding-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.welcome-line {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: #555;
  text-align: center;
}
.city-name {
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}
.state-name {
  font-size: 0.9rem;
  color: #666;
  font-weight: normal;
  text-align: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #0033A0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}
.nav-links .main {
  font-weight: bold;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.nav-links .sub {
  font-size: 1.1rem;
  color: #666;
  margin-top: 4px;
}

/* Welcome text over hero */
.hero-overlay {
  position: absolute;
  top: 250px;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.hero-overlay h2 {
  font-size: 3rem;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* Form card */
.form-section {
  max-width: 640px;
  margin: -3rem auto 2rem;
  padding: 2.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 51, 160, 0.08);
  z-index: 3;
  position: relative;
}
.form-intro {
  text-align: center;
  margin-bottom: 2rem;
}
.form-intro p {
  font-size: 1.05rem;
  color: #555;
  max-width: 500px;
  margin: 0 auto;
}
form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #0033A0;
}
form input,
form select {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
form input:focus,
form select:focus {
  outline: none;
  border-color: #0033A0;
  box-shadow: 0 0 0 2px rgba(0, 51, 160, 0.2);
}
form button {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #0033A0;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
form button:hover {
  background-color: #00257E;
}

footer {
  background: #eaeaea;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    margin: 0.5rem 0;
  }
  .site-header {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .branding-text {
    line-height: 1.1;
  }

  .welcome-line {
    font-size: 0.8rem;
  }

  .city-name {
    font-size: 1.6rem;
  }

  .state-name {
    font-size: 0.75rem;
  }

  .seal {
    height: 80px;
    margin-right: 1rem;
  }

  .menu-toggle {
    font-size: 1.8rem;
    margin-left: auto;
  }

  .site-header {
    flex-wrap: nowrap;
    gap: 1rem;
  }
}

