.review-page {
  background: #f8f8f8;
  padding: 80px 20px;
}

.review-container {
  max-width: 1100px;
  margin: 0 auto;
}

.review-hero {
  text-align: center;
  margin-bottom: 50px;
}

.review-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #c6a75e;
  margin-bottom: 12px;
  font-weight: 600;
}

.review-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}

.review-lead {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
}

.review-intro-box {
  background: #fff;
  border: 1px solid #ece7dc;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.review-section {
  margin-bottom: 90px;
}

.review-heading {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 34px;
  position: relative;
}

.review-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #c6a75e;
  margin: 14px auto 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.review-card.featured {
  border: 1px solid #e3d3a4;
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.review-text {
  font-size: 16px;
  line-height: 2;
  color: #444;
}

.review-text strong {
  background: linear-gradient(transparent 60%, rgba(198,167,94,0.22) 60%);
}

.review-cta {
  background: #fff;
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
}

.review-cta-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

.review-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #c6a75e;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .review-title {
    font-size: 26px;
  }

  .review-heading {
    font-size: 22px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}