.customer-reviews {
  padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.customer-reviews h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.stars {
  font-size: 1.2em;
  color: #FFD700; /* Gold color */
  margin: 10px 0;
}
