/* Section Styling */
.reviews-section {
  margin: 0 auto;
}

/* Title & Subtitle */
.reviews-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.reviews-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

/* Review Grid */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* Review Card Styling */
.review-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
  border: 1px solid #ddd;
}

/* Review Header */
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-logo {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* Stars */
.stars {
  font-size: 18px;
  color: #ffa600 !important;
  margin-right: 5px;
}

/* Rating Number */
.review-rating {
  font-size: 16px;
  color: #333;
}

/* Review Text */
.review-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Review Footer */
.review-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
}