body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    color: #111;
    line-height: 1.6;
  }
  
  .flag-banner img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
  }
  
  .hero {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .alert {
    color: #d0021b;
    font-weight: bold;
  }
  
  .hero-image img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
  }
  
  .subtext {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .features ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0 0 20px 0;
  }
  
  .features li {
    margin-bottom: 10px;
    text-align: left;
  }
  
  .features p {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .cta-button {
    background-color: #ffe100;
    color: black;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ffcd00;
  }
  
  .urgency {
    color: #d0021b;
    font-style: italic;
    margin-top: 10px;
  }
  
  footer {
    margin-top: 40px;
    padding: 20px;
    background: #f5f5f5;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .footer-logo {
    width: 40px;
    margin-bottom: 10px;
  }
  
  footer a {
    color: #666;
    text-decoration: none;
  }
  
  footer small {
    color: #999;
    display: block;
    margin-top: 10px;
    max-width: 600px;
    margin-inline: auto;
  }
  