/* ===============================
   General Page Styling
================================= */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fb;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

/* Navbar spacing */
#navbar {
  margin-bottom: 40px;
}

/* ===============================
   Reviews Section
================================= */
.reviews-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px 100px;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 10px;
}

.page-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

/* ===============================
   Review Cards
================================= */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

.review-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  transition: all 0.3s ease;
  border-top: 4px solid #1a73e8;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(26, 115, 232, 0.25);
}

/* Header (user + avatar) */
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 3px solid #1a73e8;
  object-fit: cover;
}

.user-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

.stars {
  color: #ffb400;
  font-size: 1.1rem;
}

/* Review text */
.review-text {
  color: #444;
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.6;
  text-align: justify;
}



/* ===============================
   Responsive
================================= */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .review-card {
    padding: 20px 15px;
  }

  .user-avatar {
    width: 50px;
    height: 50px;
  }
}
