body{
  font-family:'Poppins',sans-serif;
  background:#faf8f5;
}

.reviews-hero{
  text-align:center;
  padding:120px 20px 70px;
}

.reviews-hero span{
  letter-spacing:4px;
  color:#b57b4b;
  font-size:13px;
}

.reviews-hero h1{
  font-size:52px;
  margin:15px 0;
}

.reviews-hero p{
  max-width:700px;
  margin:auto;
  color:#666;
}

.review-detail{
  max-width:1000px;
  margin:40px auto;
  background:#fff;
  padding:40px;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review-user{
  display:flex;
  gap:20px;
  align-items:center;
  margin-bottom:25px;
}

.review-user img{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
}

.stars{
  color:#00aa6c;
  font-size:20px;
  margin-top:8px;
}

.review-detail h3{
  font-size:30px;
  margin-bottom:20px;
}

.review-detail p{
  color:#555;
  line-height:1.9;
  margin-bottom:15px;
}

.review-gallery{
  display:flex;
  gap:15px;
  margin-top:25px;
}

.review-gallery img{
  width:200px;
  height:200px;
  object-fit:cover;
  border-radius:16px;
}

@media(max-width:768px){

  .review-detail{
    margin:20px;
    padding:25px;
  }

  .reviews-hero h1{
    font-size:34px;
  }

  .review-gallery{
    flex-direction:column;
  }

  .review-gallery img{
    width:100%;
    height:250px;
  }
}