/* =========================
   ABOUT / BIO SECTION
========================= */
.about-section {
  padding: 20px 20px;
}
.about-section p,
.about-section ul {
  margin-bottom: 20px;
}
.about-section ul li {
  margin-bottom: 8px;
}

/* =========================
   HERO SECTION
========================= */
.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.hero-text {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 30px;
}

/* =========================
   BIO SPACING
========================= */
.bio {
  padding: 20px 20px;
}

/* =========================
   TESTIMONIAL SECTION
========================= */
.testimonial {
  background: #800020;
  color: white;
  padding: 60px 40px;
  border-radius: 8px;
  margin: 60px auto;
  max-width: 1100px;
  text-align: center;
}
.testimonial-text {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: #DAA520;
}

/* =========================
   TESTIMONIAL PHOTOS – DESKTOP
========================= */
.testimonial-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.testimonial-photos img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid #DAA520;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {
  /* Hero */
  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }
  .hero-text {
    font-size: 1rem;
  }
  
  /* Section accent / results */
  .section-accent h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  .section-accent p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  /* About / bio - mobile padding (REDUCED) */
  .about-section {
    padding: 15px 15px;
  }
  .about-section h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .about-section p {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .about-section ul li {
    font-size: 1rem;
  }
  
  .bio {
    padding: 15px 15px;
  }
  
  /* Testimonial - mobile */
  .testimonial {
    padding: 40px 20px;
    margin: 40px 15px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .testimonial-author {
    font-size: 1rem;
  }
  
  /* Testimonial photos – mobile layout: 2x2 grid */
  .testimonial-photos {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 20px;
  }
  
  /* All images span 1 column (side-by-side pairs) */
  .testimonial-photos img {
    grid-column: span 1 !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #DAA520;
  }
}
