.page-about {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  line-height: 1.6;
  background-color: #08160F; /* Background */
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
  color: #F2FFF6;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2FFF6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-about__section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-about__section--mission {
  background-color: #11271B; /* Card BG */
}

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

.page-about__heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #13994A, #2AD16F);
  border-radius: 2px;
}

.page-about__sub-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #2AD16F;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
}

.page-about__text {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__text a {
  color: #2AD16F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__text a:hover {
  color: #57E38D;
  text-decoration: underline;
}

.page-about__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.page-about__image-left {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__text-content {
  flex: 1;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-about__values-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
  border-left: 5px solid #2AD16F;
}

.page-about__values-item strong {
  color: #F2C14E; /* Gold */
  font-size: 1.1rem;
  display: block;
  margin-bottom: 10px;
}

.page-about__section--why-choose {
  background-color: #08160F;
}

.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: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-about__feature-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.page-about__feature-description {
  color: #A7D9B8;
  font-size: 0.95rem;
  text-align: justify;
}

.page-about__section--team {
  background-color: #11271B;
}

.page-about__team-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-about__section--future-vision {
  background-color: #08160F;
}

.page-about__section--faq {
  background-color: #11271B;
  padding-bottom: 80px;
}

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

.page-about__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #13994A; /* Slightly darker green for summary */
  border-bottom: 1px solid transparent; /* No visible border initially */
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-question {
  background-color: #11A84E; /* Main color when open */
  border-bottom: 1px solid #2E7A4E; /* Divider when open */
}

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

.page-about__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin-left: 15px;
  color: #F2FFF6;
}

.page-about__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95rem;
  color: #A7D9B8;
  text-align: justify;
}

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

.page-about__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-about__section--cta {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(180deg, #08160F 0%, #11271B 100%);
}

.page-about__container--cta {
  max-width: 800px;
}

.page-about__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

/* All images responsive base styles */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Content area images CSS dimensions lower bound */
.page-about__image-left,
.page-about__feature-image,
.page-about__team-image {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__image-text-block {
    flex-direction: column;
  }

  .page-about__image-left {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about__main-title {
    font-size: 2.2rem;
  }

  .page-about__description {
    font-size: 1rem;
  }

  .page-about__heading {
    font-size: 2rem;
  }

  .page-about__sub-heading {
    font-size: 1.6rem;
  }

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

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

  .page-about__values-list {
    grid-template-columns: 1fr;
  }

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

  /* Mobile responsive images */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__hero-image-wrapper,
  .page-about__image-text-block,
  .page-about__feature-card,
  .page-about__team-image,
  .page-about__cta-button,
  .page-about__container,
  .page-about__section,
  .page-about__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-about__cta-button,
  .page-about__cta-button--large {
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px !important;
  }

  .page-about__hero-content {
    padding: 15px;
  }

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