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;
    height: 600px;
    position: relative;
  }
  
  /* Header */
  .site-header {
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    min-height: 120px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .branding {
    display: flex;
    align-items: center;
  }
  
  .seal {
    height: 100px; /* Larger seal */
    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;
  }
  
  /* Navigation */
  .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;
  }
  
  /* Form Section */
  .form-section {
    max-width: 640px;
    margin: -5rem 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 h2 {
    font-size: 2rem;
    color: #0033A0;
    margin-bottom: 0.5rem;
  }
  
  .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 */
  footer {
    background: #eaeaea;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #ddd;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .site-header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
      margin-top: 1rem;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .form-section {
      margin: -4rem 1rem 2rem;
    }
  }
  