.testimonials-section {
  padding: 60px 40px;
  background: #f8f9fa;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  color: #ffd700;
  font-size: 20px;
  margin: 0 2px;
}

.testimonial-text {
  font-size: 18px;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: #e74c3c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.author-info h4 {
  margin: 0;
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
}

.author-info p {
  margin: 5px 0 0;
  color: #7f8c8d;
  font-size: 14px;
}