.reviews-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-text {
  flex: 1;
}

.reviews-text h2 {
  color: #A4161A; /* фирменный красный */
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Unbounded', 'Unbounded';
}

.reviews-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}

.reviews-widget {
  flex: 2;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 20px;
}

@media (max-width: 900px) {
  .reviews-section {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .reviews-text h2 {
    font-size: 28px;
    text-align: center;
  }

  .reviews-text p {
    text-align: center;
    font-size: 16px;
  }

  .reviews-widget {
    width: 100%;
  }
}