#reviews {
  position: relative;
  padding: 80px 0;
  background: #00183d;
}

#reviews .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

#reviews .site-footer {
  position: relative;
  z-index: 3;
}

#reviews h1 {
  font-family: 'TheSeasons', 'The Seasons', Georgia, serif;
  color: #e8e8f2;
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

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

.review-card p {
  font-family: 'TheSeasons', 'The Seasons', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
  font-style: italic;
}

.review-card .reviewer {
  font-family: 'TheSeasons', 'The Seasons', Georgia, serif;
  font-weight: 600;
  color: #00183d;
  font-size: 1rem;
  margin: 0;
}

.slider {
  display: none;
}

@media (max-width: 768px) {
  #reviews h1 {
    font-size: 2rem;
  }
  
  .review-card {
    padding: 25px 20px;
  }
  
  .review-card p {
    font-size: 0.9rem;
  }
  
  .review-card .reviewer {
    font-size: 0.95rem;
  }
}

