.impact-section {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.impact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.impact-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.52;
  color: #1d2123;
}

.impact-description {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.52;
  color: #797d7f;
}

.impact-metrics {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.metric-number {
  font-weight: 700;
  font-size: 52px;
  color: #e6275d;
}

.metric-content {
  font-weight: 400;
  font-size: 20px;
  color: #1d2123;
}

.highlight {
  color: #e91e63;
}

.counselling-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px;
}

.counselling-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.counselling-title h2 {
  font-weight: 500;
  font-size: 52px;
  margin: 0;
  line-height: 1.32;
  color: #1d2123;
}

.counselling-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.52;
  color: #797d7f;
}

.book-btn {
  background: linear-gradient(135deg, #e77494 0%, #e6275d 100%);
  box-shadow: 0px 24px 16px -16px #fa53a333;
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  border-radius: 14px;
  display: inline-block;
}

.magic-boxes {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.magic-boxes::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.box {
  flex: 0 0 auto;
  background: linear-gradient(180deg, #ffeded 0%, #fff9f9 80.4%);
  padding: 40px;
  border-radius: 40px;
  width: 680px;
  height: 270px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box.yellow {
  background: linear-gradient(180deg, #ffebba 0%, #fffbf0 80.4%);
}

.box.green {
  background: linear-gradient(180deg, #edfff3 0%, #f8fffa 80.4%);
}

.box.blue {
  background: linear-gradient(180deg, #edf5ff 0%, #f9fcff 80.4%);
}

.box.pink {
  background: linear-gradient(180deg, #ffedfe 0%, #fffdff 80.4%);
}

.box ul {
  padding-left: 20px;
}

.box ul li {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.52;
  color: #797d7f;
}

.box-img {
  width: 76px;
  height: 76px;
}

.box-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.box-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.52;
}

.metric-row {
  display: flex;
  flex: 1;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .impact-section {
    padding: 40px;
    gap: 40px;
  }


  .impact-metrics {
    gap: 40px;
    flex-direction: column;
  }

  .metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 125px;
  }
  .counselling-title h2 {
  text-align: center;
}

  .counselling-section {
    padding: 40px;
  }

  .magic-boxes {
    flex-direction: column;
  }

  .box {
    width: auto;
    height: auto;
    border-radius: 24px;
    padding: 24px;
  }
}

@media (max-width: 425px) {
  .impact-section {
    padding: 20px;
  }

  .impact-header {
    gap: 16px;
  }

  .impact-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.32;
  }

  .impact-description {
    font-size: 12px;
    line-height: 1.32;
  }

  .impact-metrics {
    gap: 24px;
  }

  .metric-number {
    font-size: 24px;
  }

  .metric-content {
    font-size: 12px;
  }

  .counselling-section {
    padding: 20px;
    gap: 24px;
  }

  .counselling-header {
    gap: 20px;
  }

  .counselling-title h2 {
    font-size: 26px;
  }

  .counselling-description {
    font-size: 12px;
    line-height: 1.32;
  }

  .magic-boxes {
    gap: 12px;
  }

  .box {
    border-radius: 14px;
    padding: 16px;
    gap: 20px;
  }

  .box ul li {
    font-size: 12px;
  }

  .box-img {
    width: 32px;
    height: 32px;
  }

  .box-header {
    gap: 10px;
  }

  .box-title {
    font-size: 16px;
  }
}
