.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css var(--black-color) */
}

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

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

.page-about__dark-bg {
  background-color: #0d0d0d; /* Dark background, assuming --black-color is dark */
  color: #ffffff; /* Light text for dark background */
}

.page-about__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-about__section-title {
  font-size: clamp(2em, 5vw, 2.8em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #26A9E0;
  letter-spacing: 0.5px;
}

.page-about__main-title {
  font-size: clamp(2.5em, 6vw, 3.2em);
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
}

.page-about__sub-title {
  font-size: clamp(1.8em, 4vw, 2.2em);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #26A9E0;
}

.page-about__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text contrast */
}

.page-about__hero-content {
  position: relative; /* Ensure content is above image but not overlapping its visible area */
  z-index: 1;
  text-align: center;
  padding: 20px;
  margin-top: 30px; /* Space below image */
  max-width: 900px;
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

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

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

.page-about__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-about__btn-link {
  background-color: transparent;
  color: #26A9E0;
  border: none;
  padding: 10px 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-about__btn-link:hover {
  color: #1e87c0;
}

/* Mission & Vision Cards */
.page-about__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-about__card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  color: #333333;
}

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

.page-about__card p {
  font-size: 1em;
  color: #555555;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-about__image--centered {
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Us Features */
.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-about__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-about__feature-card p {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-about__feature-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  border-radius: 8px;
  object-fit: cover;
}

/* Commitment List */
.page-about__commitment-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto 0;
}

.page-about__commitment-list li {
  background-color: #f8f8f8;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1.1em;
  color: #333333;
}

.page-about__commitment-list li strong {
  color: #26A9E0;
}

/* Final CTA Section */
.page-about__cta-final {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  padding: 80px 0;
}

.page-about__cta-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.page-about__cta-content {
  flex: 1;
  min-width: 300px;
}

.page-about__cta-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__cta-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-about__cta-final .page-about__section-title {
  color: #ffffff;
  text-align: left;
}

.page-about__cta-final .page-about__text-block {
  color: #f0f0f0;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
}

.page-about__cta-final .page-about__cta-buttons {
  justify-content: flex-start;
}

/* FAQ Section */
.page-about__faq-section {
  padding-bottom: 80px;
}

.page-about__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-about__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-about__faq-question::-webkit-details-marker {
  display: none;
}

.page-about__faq-question:hover {
  background-color: #f0f0f0;
}

.page-about__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-about__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  min-width: 20px;
  text-align: center;
}

/* Details tag styling for native expand/collapse */
.page-about__faq-item[open] .page-about__faq-question {
  background-color: #f0f0f0;
  border-bottom: none;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  content: '−';
}

.page-about__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  /* For details, browser handles open/close. For div fallback, these would be controlled by JS */
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-about__hero-section {
    padding-bottom: 40px;
  }

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

  .page-about__hero-description {
    font-size: 1.1em;
  }

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

  .page-about__cta-container {
    flex-direction: column;
    text-align: center;
  }

  .page-about__cta-final .page-about__section-title,
  .page-about__cta-final .page-about__text-block {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-about__cta-final .page-about__cta-buttons {
    justify-content: center;
  }
}

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

  .page-about__container {
    padding: 0 15px;
  }

  .page-about__section {
    padding: 30px 0;
  }

  .page-about__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-bottom: 30px;
  }

  .page-about__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }

  .page-about__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

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

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

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

  .page-about__section-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
  }

  .page-about__sub-title {
    font-size: clamp(1.5em, 6vw, 1.8em);
  }

  .page-about__text-block {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-about__image,
  .page-about__hero-image,
  .page-about__feature-image,
  .page-about__cta-image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    width: 100% !important;
  }

  .page-about__hero-image-wrapper,
  .page-about__cta-image-wrapper,
  .page-about__video-section,
  .page-about__video-container,
  .page-about__video-wrapper,
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

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

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

  .page-about__commitment-list li {
    font-size: 1em;
    padding: 15px;
  }
}

/* No CSS filters for images */
.page-about img {
  filter: none; /* Ensure no image filters are applied */
}