.reviewsPage {
  min-height: 100vh;
  background-color: #fafafa;
  padding-top: 80px;
}

.headerSection {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mainTitle {
  font-size: 3.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.25rem;
  color: #666;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.reviewsSection {
  padding: 40px 0 80px;
}

.reviewCol {
  display: flex;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .mainTitle {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .headerSection {
    padding: 60px 0 40px;
  }
  
  .reviewsSection {
    padding: 30px 0 60px;
  }
}

