.page-about {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Assuming shared.css sets a light body background */
}

.page-about__section-spacing {
  padding: 80px 0;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-about__section-title {
  font-size: 38px;
  color: #26A9E0; /* Brand primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-about__text-block {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__text-block a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-about__text-block a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  box-sizing: border-box;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-about__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-about__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 900px;
  padding: 0 20px;
}

.page-about__hero-title {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Buttons */
.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-about__btn-primary:hover {
  background-color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-about__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 20px; /* For desktop */
}

.page-about__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-about__hero-cta {
  margin-top: 20px;
}

/* Image content */
.page-about__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
  background-color: #26A9E0; /* Brand primary color for dark background */
  color: #FFFFFF; /* White text for dark background */
}

.page-about__mission-vision-section .page-about__section-title {
  color: #FFFFFF;
}

.page-about__grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-about__content-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.page-about__card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-about__card-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__card-text a {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-about__card-text a:hover {
  text-decoration: none;
}

.page-about__mission-list,
.page-about__vision-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-about__mission-list li,
.page-about__vision-list li {
  margin-bottom: 10px;
  font-size: 17px;
  display: flex;
  align-items: flex-start;
}

.page-about__list-icon {
  font-size: 20px;
  margin-right: 10px;
  color: #FFFFFF;
  line-height: 1;
}

/* Why Us Section */
.page-about__why-us-section {
  background-color: #FFFFFF;
}

.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-about__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-about__feature-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  text-align: justify;
}

/* History Section */
.page-about__history-section {
  background-color: #f5f5f5; /* Light gray background */
}

/* Team Section */
.page-about__team-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-about__team-section .page-about__section-title {
  color: #FFFFFF;
}

.page-about__team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__team-member {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
}

.page-about__team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #FFFFFF;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__team-name {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.page-about__team-role {
  font-size: 16px;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-about__team-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
  text-align: justify;
}

.page-about__team-bio a {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-about__team-closing {
  margin-top: 50px;
  font-size: 18px;
  font-style: italic;
  text-align: center;
}

/* CTA Section */
.page-about__cta-section {
  background-color: #FFFFFF;
  text-align: center;
}

.page-about__cta-content {
  padding: 40px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-about__faq-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-about__faq-section .page-about__section-title {
  color: #FFFFFF;
}

.page-about__faq-list {
  margin-top: 40px;
}

.page-about__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-about__faq-title {
  margin: 0;
  font-size: 20px;
  color: #FFFFFF;
}

.page-about__faq-toggle {
  font-size: 28px;
  line-height: 1;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.page-about__faq-item.active .page-about__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an 'x' or '-' */
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 16px;
  line-height: 1.7;
  color: #f0f0f0;
  text-align: justify;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 20px 25px;
}

.page-about__faq-answer p {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-about__faq-answer p a {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-about__faq-answer p a:hover {
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 44px;
  }

  .page-about__hero-description {
    font-size: 20px;
  }

  .page-about__section-title {
    font-size: 32px;
  }

  .page-about__grid-two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-about__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-about__hero-description {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .page-about__section-spacing {
    padding: 50px 0;
  }

  .page-about__container,
  .page-about__cta-content {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-about__text-block {
    font-size: 16px;
  }

  .page-about__image-content {
    margin: 30px auto;
  }

  /* Images and Videos Responsive */
  .page-about img,
  .page-about video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__features-grid,
  .page-about__team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__feature-card,
  .page-about__team-member {
    padding: 20px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    margin-left: 0 !important;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__content-card {
    padding: 25px;
  }

  .page-about__card-title {
    font-size: 24px;
  }

  .page-about__faq-question {
    font-size: 18px;
    padding: 15px 20px;
  }

  .page-about__faq-title {
    font-size: 18px;
  }

  .page-about__faq-answer {
    padding: 0 20px;
  }

  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 28px;
  }

  .page-about__hero-description {
    font-size: 16px;
  }

  .page-about__section-title {
    font-size: 24px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    font-size: 16px;
  }

  .page-about__faq-question {
    font-size: 16px;
  }

  .page-about__faq-title {
    font-size: 16px;
  }
}