.reviews {
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-container {
  width: 80%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-content: center;
  align-items: center;
  gap: 2rem;
}

.reviews-options-title {
  text-transform: uppercase;
  margin: 30px 0;
  font-size: 52px;
  font-weight: 500;
  color: #303030;
  text-align: center;
}

.review-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.quote-icon {
  color: #303030;
  font-size: 50px;
  margin-bottom: 10px;
}

.quote-icon-large {
  font-size: 80px;
  color: rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.star-rating {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.star-rating .fa-star {
  color: #303030;
  margin: 0 2px;
}

.review-text {
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1.6;
  color: #303030;
  margin: 10px 0;
}

.review-author {
  font-weight: 400; /* Regular */
  font-size: 1em;
  color: #303030;
  margin-top: 10px;
}


/* Swiper styles */
.swiper-container-reviews {
  width: 100%;
  overflow: hidden; /* Prevent horizontal scroll */
}

.swiper-wrapper {
  display: flex;
  transition-timing-function: linear; /* Ensure smooth linear transition */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Ensure each slide takes full width */
}


/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .reviews-options-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .reviews-options-title {
    font-size: 32px;
  }
}

