.reviews-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: white;
}
  
.reviews-main {
  flex-grow: 1;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
  
.google-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.customer-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
  
.reviews-grid {
  width: 100%;
  max-width: 1366px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}
  
.review-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 35px;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.1), 5px 10px 15px rgba(0, 0, 0, 0.1), 5px 10px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-text {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.5;
}
  
.review-stars {
  display: flex;
  gap: 0.25rem;
}
  
.star-filled {
  color: #facc15;
  font-size: 1.25rem;
}
  
.star-empty {
  color: #d1d5db;
  font-size: 1.25rem;
}

/* Mobile View */
@media screen and (max-width: 480px) {
  .google-title, .customer-title {
    font-size: 1.5rem;
  }
  .review-name {
    font-size: 1.3rem;
  }
  .review-text {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  .review-card {
    line-height: 1.5rem;
  }
}
