.page-about {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  line-height: 1.6;
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: #08160F;
  color: #F2FFF6;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}

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

.page-about__hero-content {
  position: relative; /* Ensure content is above image filter */
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content slightly over the image for visual interest */
}

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

.page-about__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-about__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-about__section--introduction {
  background-color: #f8f8f8;
}

.page-about__section--why-choose {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-about__section--responsibility {
  background-color: #f8f8f8;
  color: #333333;
}

.page-about__section--faq {
  background-color: #ffffff;
  color: #333333;
}

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

.page-about__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  color: #11A84E; /* Brand color for titles */
}

.page-about__section--why-choose .page-about__section-title,
.page-about__section--team .page-about__section-title {
  color: #F2FFF6; /* Light text for dark backgrounds */
}

.page-about__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  margin-bottom: 25px;
  color: #11A84E;
}

.page-about__section--why-choose .page-about__sub-title {
  color: #2AD16F;
}

.page-about__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

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

.page-about__grid-layout--reverse .page-about__text-block {
  order: 2;
}

.page-about__grid-layout--reverse .page-about__image-block {
  order: 1;
}

.page-about__text-block p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333333;
}

.page-about__section--why-choose .page-about__text-block p {
  color: #A7D9B8;
}

.page-about__value-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__value-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-size: 1.05rem;
  color: #333333;
}

.page-about__value-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

.page-about__feature-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2AD16F;
}

.page-about__feature-card p {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-about__btn-secondary {
  display: inline-block;
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.page-about__btn-secondary:hover {
  background: #2AD16F;
  color: #11271B;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-about__section--team .page-about__text-block p {
  color: #F2FFF6;
}

.page-about__section--responsibility .page-about__text-block p {
  color: #333333;
}

.page-about__section--responsibility .page-about__sub-title {
  color: #11A84E;
}

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

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

.page-about__faq-item[open] {
  background-color: #ffffff;
  border-color: #11A84E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #11A84E;
}

.page-about__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-about__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
    padding: 15px;
  }

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

  .page-about__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

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

  .page-about__grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-about__grid-layout--reverse .page-about__text-block {
    order: unset;
  }

  .page-about__grid-layout--reverse .page-about__image-block {
    order: unset;
  }

  .page-about__section-title {
    margin-bottom: 40px;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-about__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .page-about__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-about__feature-title {
    font-size: 1.25rem;
  }

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

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

  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__image-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure content does not overflow */
  }

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

  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-about__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}

/* Color Contrast Fixes (if needed) */
.page-about__dark-bg {
  color: #F2FFF6; /* Deep Green background with Main Text color */
}

.page-about__light-bg {
  color: #333333; /* Light background with dark text */
}