.eligibility-section {
  animation: fadeIn 0.8s ease-in;
  text-align: left;
}

.eligibility-section * {
  text-align: left;
}

.eligibility-section .text-center {
  text-align: center !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.form-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.form-section h3 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
}

.form-label {
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  text-align: left;
  display: block;
}

.form-control, .form-select {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #212529;
}

.form-control:focus, .form-select:focus {
  background: white;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.form-check-label {
  color: white;
  text-align: left;
}

.form-text {
  color: rgba(255, 255, 255, 0.7) !important;
}

.required-field::after {
  content: " *";
  color: #ff6b6b;
}

.btn-primary-custom {
  background: white;
  color: #0d6efd;
  border: 2px solid white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
}

.btn-primary-custom:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #0d6efd;
}

.page-title {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: white;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  .form-section {
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 992px) {
  .eligibility-section {
    max-width: 1000px;
    margin: 0 auto;
  }
  .page-title {
    font-size: 2.75rem;
  }
  .form-section {
    padding: 2.5rem 2rem;
  }
}

