
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('fondo-iconos-verano.png');
  background-repeat: repeat;
  background-size: 300px;
  background-color: #fcf4d0;
  color: #333;
}

header {
  background-color: #ffcc00;
  color: #b30000;
  text-align: center;
  padding: 40px 20px;
  font-size: 28px;
  font-weight: bold;
}

.nav {
  text-align: center;
  padding: 15px;
  background-color: #e60000;
}

.nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-size: 18px;
  font-weight: bold;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fffaf0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #ffcc00;
  color: #b30000;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

footer {
  background-color: #f4f4f4;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #666;
}

.footer {
  background-color: #e60000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: white;
}

.eligibility-box {
  border: 2px solid #ffcc00;
  padding: 20px;
  margin-bottom: 30px;
  background-color: #fffaf0;
  border-radius: 10px;
}

.urgency-banner {
  background-color: #e60000;
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.urgency-header {
  font-size: 18px;
  font-weight: bold;
  color: #b30000;
  margin-top: 15px;
}




.form-group {
  position: relative;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  max-height: 200px;
  overflow-y: auto;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
}
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}
