.reviews-section {
  padding: 70px 20px;
  background: #f7f7f7;
}

.reviews-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--color-menu-bg, #012169);
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: #d8d8d8;
}

.review-stars {
  color: var(--color-cta-bg, #C8102E);
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 1;
}

.review-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #2b2b2b;
  flex-grow: 1;
}

.review-author {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: var(--color-brand, #012169);
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 50px 20px;
  }

  .reviews-section h2 {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
