/* ============================================
   OUR IMPACT SECTION
   ============================================ */
.impact-section {
  background-color: rgb(247, 247, 242);
  padding: 50px 20px;
}

@media (min-width: 768px) {
  .impact-section {
    padding: 80px 50px;
  }
}

.impact-section h2 {
  font-family: var(--font-family-header), sans-serif;
  color: var(--primary-purple);
  font-size: 28px;
  margin-bottom: 2rem;
  text-align: center;
}

/* Four cards in a responsive grid — same breakpoint
   logic as the value-cards in the About section */
.impact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .impact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .impact-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.impact-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.impact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.impact-card-icon i {
  font-size: 22px;
  color: #ffffff;
}

.impact-card h3 {
  font-family: var(--font-family-header), sans-serif;
  color: var(--primary-purple);
  font-size: 16px;
  font-weight: 600;
}

.impact-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}