.testimonials-section {
  padding: 2rem 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #faf5ff 100%);
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.quote-icon {
  width: 40px;
  height: 40px;
  color: #6366f1;
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.author-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(99, 102, 241, 0.2);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.author-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }
}