body {
  font-family: 'Manrope', sans-serif;
  background-color: #f4f6f9;
  margin: 0;
  padding: 0;
}
.hero {
  background: linear-gradient(120deg, #d71920, #002654);
  padding: 30px 20px 10px;
  text-align: center;
  color: white;
}
.hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin: 10px 0 5px;
}
.hero-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.hero-icons img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
}
.hero-icons img:hover {
  transform: scale(1.1);
}
.eligibility-bar {
  text-align: center;
  background-color: #fff;
  padding: 60px 10px 60px;
  margin-bottom: 20px;
}
.eligibility-bar h3 {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 26px;
  color: #002654;
}
.eligibility-bar .highlight {
  background-color: #ffe6e6;
  color: #d71920;
  padding: 4px 8px;
  border-radius: 6px;
}
.eligibility-bar p {
  margin: 0;
  color: #555;
  font-size: 16px;
}
.progress-bar {
  height: 10px;
  background: #ccc;
  border-radius: 5px;
  margin: 0 auto 20px;
  max-width: 720px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: #d71920;
  width: 0%;
  transition: width 0.4s ease;
}
.form-container {
  max-width: 720px;
  margin: 20px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}
h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #002654;
  text-align: center;
}
.step {
  display: none;
  animation: fadeIn 0.5s ease;
}
.step.active {
  display: block;
}
label {
  font-weight: 600;
  display: block;
  margin-top: 15px;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}
.checkbox-group, .radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
}
.checkbox-group input,
.radio-group input {
  margin-right: 10px;
}
.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
button {
  padding: 14px 28px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
.back {
  background-color: #002654;
  color: white;
}
.next, .submit {
  background-color: #d71920;
  color: white;
}
.thanks {
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
  color: green;
}
.shake {
  animation: shake 0.5s;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-10px); }
  40%, 80% { transform: translateX(10px); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.info-section {
  max-width: 920px;
  margin: 50px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.info-section h3 {
  color: #002654;
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 800;
  text-align: center;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}
.info-box {
  background: #f4f6f9;
  border-radius: 12px;
  padding: 25px;
  font-size: 16px;
  line-height: 1.7;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  position: relative;
}
.info-box::before {
  content: "\2714\0020";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  top: 15px;
  left: 20px;
}
.info-box br {
  display: block;
  margin-top: 8px;
}
.highlight {
  color: #d71920;
  font-weight: bold;
}
.bold {
  font-weight: bold;
}
.color-highlight {
  color: #d71920;
  font-weight: bold;
}
.stats-section {
  max-width: 920px;
  margin: 40px auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  width: 28%;
}
.stat-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.stat-box h4 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #002654;
}
.stat-box p {
  font-size: 16px;
  color: #555;
}

