/* Main Section Styling */
.impact-section {
  padding: 40px 20px;
  background-color: #f9fafb;
  font-family: 'Segoe UI', sans-serif;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #111827;
}

.impact-subtitle {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: #1f2937;
}

/* Program Cards */
.program-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.program-card {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 20px;
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-card img.program-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.program-card h3 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
  color: #111827;
}

.program-card p,
.program-card ul {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 10px;
}

.program-card ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Testimonials */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial-card {
  background-color: #e0f2fe;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.testimonial-card img.testimonial-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #f3f4f6;
  padding: 15px;
  border-left: 4px solid #3b82f6;
  border-radius: 6px;
}

.faq-item h4 {
  margin-bottom: 5px;
  color: #1e40af;
}

.faq-item p {
  font-size: 0.95rem;
  color: #374151;
}
