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

.page-about__hero-section {
  position: relative;
  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; /* Dark background for hero */
  color: #F2FFF6; /* Light text for dark background */
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of hero image */
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-about__hero-content {
  position: relative; /* Ensure content is above any background elements */
  z-index: 2; /* Higher z-index to ensure text is visible */
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
}

.page-about__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Light text for dark button */
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-about__section {
  padding: 60px 0;
  background-color: #f8f9fa;
  color: #333333;
}

.page-about__section:nth-of-type(odd) {
  background-color: #ffffff;
}

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

.page-about__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #11A84E; /* Primary color for section titles */
}

.page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-about__content-grid.reverse-order {
  flex-direction: row-reverse;
}

.page-about__text-block {
  flex: 1;
  min-width: 300px;
}

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

.page-about__text-block ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #333333;
}

.page-about__text-block ul li {
  margin-bottom: 8px;
  color: #333333;
}

.page-about__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-about__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-about__btn-secondary {
  background: #ffffff;
  color: #11A84E;
  border: 2px solid #11A84E;
}

.page-about__btn-secondary:hover {
  background: #11A84E;
  color: #ffffff;
}

.page-about__faq-section {
  background-color: #08160F; /* Dark background for FAQ */
  color: #F2FFF6;
}

.page-about__faq-section .page-about__section-title {
  color: #F2C14E; /* Gold title for dark section */
}

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

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  cursor: pointer;
  color: #F2FFF6; /* Main text color */
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-about__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-about__faq-item summary::marker {
  display: none; /* Hide default marker for other browsers */
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Green for toggle icon */
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__content-grid {
    flex-direction: column;
  }

  .page-about__content-grid.reverse-order {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 40px;
  }

  .page-about__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em); /* Use clamp for h1 font size */
  }

  .page-about__intro-text {
    font-size: 1em;
  }

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__cta-button,
  .page-about__btn-secondary,
  .page-about__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
    margin-bottom: 10px; /* Add margin for stacked buttons */
  }

  .page-about__hero-content .page-about__cta-button {
    margin: 0 auto;
  }

  .page-about__container,
  .page-about__section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-about img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__image-block,
  .page-about__text-block {
    min-width: unset;
    width: 100%;
  }

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

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

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: clamp(1.6em, 6vw, 2em);
  }

  .page-about__section-title {
    font-size: 1.6em;
  }

  .page-about__cta-button {
    padding: 10px 20px;
  }
}