.review-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  font-family: Arial, sans-serif;
}

.review-slide {
  display: none;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-slide.active {
  display: block;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: #1fa686;
  font-weight: bold;
  text-decoration: none;
}

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #1fa686;
}





