.reviews {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  padding: 2rem;
  background: #f3f3f3;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.reviews h2 {
  color: #002868;
  margin-bottom: 1.5rem;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review {
  background: #f8f9fa;
  border-left: 4px solid #002868;
  padding: 1rem 1.25rem;
  text-align: left;
  border-radius: 6px;
}

.review-text {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.review-author {
  font-weight: bold;
  color: #555;
}

.review-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: rgba(191, 10, 48, 0.9);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(191, 10, 48, 1);
  transform: translateY(-2px);
}

/* ------------------------------
   Responsive Adjustments
------------------------------- */
@media (max-width: 768px) {
  .reviews {
    padding: 1.5rem;
    margin: 2rem 1rem;
  }

  .review {
    padding: 0.9rem 1rem;
  }

  .review-text {
    font-size: 0.95rem;
  }

  .review-author {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .reviews {
    padding: 1rem;
    margin: 1.5rem 0.75rem;
  }

  .review {
    font-size: 0.9rem;
    padding: 0.75rem 0.9rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .review-author {
    font-size: 0.85rem;
  }

  .btn-secondary {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}
