body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f7fb;
}

.testimonials {
  padding: 60px 20px;
  background-color: #dce9fd;
  text-align: center;
}

.testimonials h2 {
  font-size: 28px;
  color: #183A6D;
  margin-bottom: 40px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #fbbc04;
  font-weight: bold;
}

.rating img {
  width: 20px;
  height: 20px;
}

.score {
  color: #333;
  font-size: 16px;
}

.card h3 {
  font-size: 16px;
  color: #183A6D;
  font-weight: bold;
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile spacing */
@media (max-width: 480px) {
  .card {
    padding: 20px 15px;
  }
}
