.reviews-section {
  padding: 40px 0;
  background: #111;
  color: white;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.reviews-subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 40px;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

 

.review-rating {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  color: #EEE;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #FF0000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #FFF;
  font-weight: bold;
}

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

.author-name {
  font-weight: bold;
  color: #FFF;
}

.author-role {
  color: #888;
  font-size: 0.9rem;
}
