.testimonials {
  padding: 8rem 1rem;
  background: var(--light-bg);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 800;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
}

.testimonial-info h3 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.testimonial-content {
  position: relative;
  color: var(--text-color);
  line-height: 1.8;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 1rem;
}

.star {
  color: var(--accent-color);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
}

