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

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Deep Green background for hero */
  color: #F2FFF6;
}

.page-about__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 20px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
  transform: scale(1.05); /* Slight zoom for visual appeal */
}

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

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold color for main title */
}

.page-about__main-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary text color */
}

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

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold text */
  border: 2px solid #F2C14E;
}

.page-about__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

.page-about__intro-section,
.page-about__responsibility,
.page-about__future-vision,
.page-about__cta-section {
  padding: 80px 0;
  background-color: #f4f7f6; /* Light background for contrast with dark text */
  color: #333333;
}

.page-about__why-choose-us,
.page-about__team-section,
.page-about__faq-section {
  padding: 80px 0;
  background-color: #08160F; /* Dark background for these sections */
  color: #F2FFF6;
}

.page-about__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold color for section titles */
}

.page-about__why-choose-us .page-about__section-title,
.page-about__team-section .page-about__section-title,
.page-about__faq-section .page-about__section-title {
  color: #F2C14E; /* Gold color on dark background */
}

.page-about__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #A7D9B8; /* Secondary text color on dark background */
}

.page-about__intro-section .page-about__section-description,
.page-about__responsibility .page-about__section-description,
.page-about__future-vision .page-about__section-description,
.page-about__cta-section .page-about__section-description {
  color: #333333; /* Dark text on light background */
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
}

.page-about__text-block {
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff; /* Card background for light sections */
  color: #333333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-about__intro-section .page-about__text-block,
.page-about__responsibility .page-about__text-block {
  background-color: #ffffff;
  color: #333333;
}

.page-about__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 20px;
  color: #11A84E; /* Primary green for sub-titles */
}

.page-about__text-block p {
  margin-bottom: 15px;
}

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

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

.page-about__card {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold for card titles */
}

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

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

.page-about__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-about__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  user-select: none;
  color: #F2FFF6;
  background-color: #0A4B2C; /* Deep Green for question background */
  transition: background-color 0.3s ease;
}

.page-about__faq-item summary:hover {
  background-color: #1E3A2A; /* Darker on hover */
}

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

.page-about__faq-item summary .page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #57E38D; /* Glow color for toggle */
}

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

.page-about__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.05em;
  color: #A7D9B8; /* Secondary text color */
}

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

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

  .page-about__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-about__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }

  .page-about__intro-section,
  .page-about__why-choose-us,
  .page-about__responsibility,
  .page-about__team-section,
  .page-about__future-vision,
  .page-about__faq-section,
  .page-about__cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 0 15px;
  }

  .page-about__hero-section {
    padding-bottom: 30px;
  }

  .page-about__hero-image-wrapper {
    max-height: 300px;
  }

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

  .page-about__main-description {
    font-size: 1em;
  }

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

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
  }

  .page-about__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-about__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

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

  .page-about__text-block,
  .page-about__card {
    padding: 25px;
  }

  .page-about__sub-title {
    font-size: 1.5em;
  }

  .page-about__card-title {
    font-size: 1.3em;
  }

  .page-about__faq-item summary {
    padding: 15px;
    font-size: 1.1em;
  }

  .page-about__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 1em;
  }

  /* Ensure all images are responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-about__hero-image-wrapper,
  .page-about__content-grid,
  .page-about__features-grid,
  .page-about__faq-list,
  .page-about__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-about__intro-section,
  .page-about__why-choose-us,
  .page-about__responsibility,
  .page-about__team-section,
  .page-about__future-vision,
  .page-about__faq-section,
  .page-about__cta-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-about__text-block,
  .page-about__card {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
  }
}