.impact {
  padding: 80px 0;
  background: #f8f9fa;
}

.btn-get-started {
  background-color: var(--accent-color-alt);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-get-started:hover {
  background-color: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.impact-stats {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #2c384e;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: #2c384e;
  margin-bottom: 5px;
}

.stat-description {
  color: #6f7a8d;
  font-size: 14px;
  line-height: 20px;
}

.quote-icon-container {
  text-align: center;
  margin-top: 30px;
}

.quote-icon {
  font-size: 48px;
  color: #2c384e;
}

.testimonials-container {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-item {
  margin-bottom: 30px;
}

.testimonial-item:last-child {
  margin-bottom: 0;
}

.testimonial-item p {
  font-style: italic;
  color: #6f7a8d;
  margin-bottom: 20px;
  line-height: 28px;
}

.testimonial-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial-info h3 {
  font-size: 16px;
  color: #2c384e;
  margin: 0;
}

.testimonial-info h4 {
  font-size: 14px;
  color: #6f7a8d;
  margin: 0;
}

@media (max-width: 768px) {
  .stat-item {
    margin-bottom: 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 16px;
  }
  
  .stat-description {
    font-size: 12px;
  }
  
  .quote-icon {
    font-size: 36px;
  }
  
  .testimonial-item {
    margin-bottom: 20px;
  }
  
  .testimonial-img {
    width: 50px;
    height: 50px;
  }
}
