@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
/*
body {
  font-family: 'Nunito Sans', sans-serif;
  background-color: #f9fcff;
  color: #2C3E50;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
*/
/* Scroll Animation Base */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background-color: #eaf6ff;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #2C3E50;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #44596e;
}

.btn {
  padding: 12px 24px;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
  background-color: #2980B9;
  color: white;
}

.btn-primary:hover {
  background-color: #1F6395;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #F3F3F3;
  color: #2980B9;
}

.btn-secondary:hover {
  background-color: #dadada;
  transform: scale(1.05);
}

/* How It Works Section */
.how-it-works {
  text-align: center;
  padding: 60px 20px;
}

.how-it-works h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.steps-summary {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  font-size: 24px;
  color: #2980B9;
}

/* Benefits Section */
.benefits {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.benefits h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

/*.benefit-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}*/

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 280px);
  justify-content: center;
  column-gap: 60px; /* increased from 40px */
  row-gap: 40px;    /* increased from 40px */
}

.benefit {
  background-color: #f0f7fd;
  border-radius: 8px;
  padding: 0px 20px 20px 20px;
  width: 280px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefit.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit h5 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2C3E50;
}

.benefit p {
  font-size: 16px;
  color: #596d7c;
}

/* Footer */
/*footer {
  background-color: #eaf6ff;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  color: #44596e;
}
*/
/* Mobile Styles */
@media (max-width: 768px) {

  .benefit-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* spacing between benefit items */
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .btn {
    font-size: 18px;
    width: 90%;
  }

  .how-it-works h2,
  .benefits h2 {
    font-size: 28px;
  }

  /*.steps-summary {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .step {
    font-size: 20px;
  }*/

  .steps-summary {
    flex-direction: column;
    align-items: center;
    gap: 0px;  /* reduce gap from 20px to 10px */
  }

  .step {
    font-size: 30px; /* increase font size from 20px to 22px */
  }

  .benefit-list {
    flex-direction: column;
    align-items: center;
  }

  .benefit {
    width: 90%;
  }
}

