/* ===========================
   ABOUT US PAGE STYLES
   =========================== */

.about-section {
  margin: 30px auto;
  max-width: 1100px;
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  padding: 2rem;
}

.about-section h2 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  color: var(--brand);
  text-align: center;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Reviews */
.reviews {
  margin-top: 3rem;
}

.reviews h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--brand);
  text-align: center;
}

.review-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  background: #fff;
  display: block;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.review-gallery img:hover {
  transform: scale(1.03);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-section { padding: 1.5rem 1rem; }
  .about-section h2 { font-size: 2rem; }
  .about-section p { font-size: 1rem; }
  .review-gallery { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 480px) {
  .about-section h2 { font-size: 1.8rem; }
  .about-section p { font-size: 0.95rem; }
  .review-gallery img { border-radius: 8px; }
}
.card .content {
  padding: 2rem; /* more breathing room */
}

/* On smaller screens reduce padding slightly */
@media (max-width: 700px) {
  .card .content {
    padding: 1.2rem;
  }
}
