.impact-section {
  padding: 50px 20px;
  text-align: center;
  background-color: aliceblue;
  color: #333;
}

.impact-title {
  margin-top: 70px;
  font-size: 46px;
  font-weight: bold;
  color: #1f2b7b;
  margin-bottom: 30px;
}

.card-img-wrapper {
  width: 100%;
  height: 200px;
  position: relative;
  background-size: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 10px solid #f27420;
  border-right: 10px solid #f27420;
  border-left: 10px solid #f27420;
  .wrap-dark {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    &:hover {
      background-color: hsla(0, 0%, 20%, 0);
      h2 {
        color: #1f2b7b;
      }
    }
  }
}
#child {
  background-image: url(assets/img/b12.jpg);
}
#teens {
  background-image: url(assets/img/b9.jpg);
}
#women {
  background-image: url(assets/img/b23.jpg);
}

.impact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.impact-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.131);
  width: 350px;
  text-align: left;
  transition: transform 0.3s ease;
  margin-top: 70px;
}

.impact-card:hover {
  transform: translateY(-10px);
}

.impact-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fdb813;
  text-align: center;
  font-family: "florania";
  padding: 20px;
}

.impact-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  margin: 20px;
}

.highlight {
  display: inline-block;
  margin: 20px;
  font-weight: bold;
  color: #7851a9;
  font-size: 14px;
}
