.reviews {
  padding: 2rem;
  background: #fafafa;
  text-align: center;
}

.reviews h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1.5rem;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.2s ease-in-out;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 0.8rem;
}

.review-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.see-more {
  margin-top: 2rem;
}

.see-more a {
  text-decoration: none;
  background: #333;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
}

.see-more a:hover {
  background: #111;
}
