.employer-benefits-section {
  background: #97152c;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  font-weight: 400;
  color: #ffffffcc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-button {
  background-color: #ffffff;
  color: #0c0c0c;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e6e6e6;
}

.benefits-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.section-head {
  font-size: 32px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 50px;
}

.benefit-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  width: 280px;
  text-align: left;
  flex-shrink: 0;
}

.icon {
  background-color: #e9f0ff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: #1d4ed8;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* =============================
   Safe, Scoped Form Section
============================= */

.info-form-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.info-form-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-left,
.info-right {
  flex: 1;
  min-width: 280px;
}

.info-left h2 {
  font-size: 32px;
  color: #0d1b2a;
  font-weight: 700;
  margin-bottom: 20px;
}

.info-left p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.6;
}

.info-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-left ul li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1f2937;
}

.info-right h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0d1b2a;
  font-weight: 600;
}

.info-right form {
  display: flex;
  flex-direction: column;
}

.info-right label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #1f2937;
  font-weight: 500;
}

.info-right input {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.3s ease;
}

.info-right input:focus {
  border-color: #1d4ed8;
}

.info-right button {
  background-color: #97152c;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.info-right button:hover {
  background-color: #7d1124;
}

/* Responsive */
@media (max-width: 768px) {
  .info-form-container {
    flex-direction: column;
  }

  .info-left h2 {
    font-size: 26px;
  }

  .info-right h3 {
    font-size: 20px;
  }
}

/* Responsive Styles */

@media (max-width: 1200px) {
  .benefit-cards {
    gap: 20px;
  }

  .card {
    width: 250px;
    padding: 25px 20px;
  }

  .section-head {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .benefit-cards {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .card {
    width: 45%;
    margin-bottom: 20px;
  }

  .section-head {
    font-size: 26px;
  }

  .section-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .benefit-cards {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .card {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
  }

  .section-head {
    font-size: 24px;
  }

  .section-description {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 30px;
  }

  .section-description {
    font-size: 14px;
  }

  .cta-button {
    font-size: 14px;
    padding: 12px 25px;
  }
}
