/* ============================= */
/* About Page Styles (Scoped)    */
/* ============================= */
body {
    font-family: 'Cabin', sans-serif;
}

.about-page .section {
  height: 100vh; /* default for desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.about-page .bg-light {
  background: #ffffff;
  color: #222;
}

.about-page .bg-gray {
  background: #f8f9fa;
  color: #222;
  margin-top:40px;
}

.about-page .content {
  max-width: 800px;
}

.about-page h1,
.about-page h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #D52927;
}

.about-page p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* --------------------------- */
/* Responsive Styles           */
/* --------------------------- */

/* Tablets */
@media (max-width: 1024px) {
  .about-page h1,
  .about-page h2 {
    font-size: 2.5rem;
  }

  .about-page p {
    font-size: 1.1rem;
  }

  .about-page .content {
    max-width: 90%;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .about-page h1,
  .about-page h2 {
    font-size: 2rem;
  }

  .about-page p {
    font-size: 1rem;
  }

  .about-page .section {
    padding: 1.5rem;
    height: auto; /* <-- Fit content on mobile */
    align-items: flex-start; /* optional for better spacing */
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .about-page h1,
  .about-page h2 {
    font-size: 1.6rem;
    margin-top: 30px;
  }

  .about-page p {
    font-size: 0.95rem;
  }

  .about-page .section {
    padding: 1rem;
    height: auto; /* <-- Fit content on mobile */
    align-items: flex-start; /* optional */
  }
}

/* Mission Section Styling */
.mission-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.section-title {
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

.intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

.mission-pointers {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.mission-pointers li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #D52927;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-pointers li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.mission-pointers strong {
  color: #2c3e50;
}

.tagline {
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}

/* -------------------- */
/* Mobile Responsive CSS */
/* -------------------- */
@media screen and (max-width: 768px) {
  .mission-section {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .intro,
  .tagline {
    font-size: 1rem;
  }

  .mission-pointers li {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .mission-section {
    padding: 20px 10px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .intro,
  .tagline {
    font-size: 0.95rem;
  }

  .mission-pointers li {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
