.page-about {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height to prevent overly tall hero on desktop */
  overflow: hidden;
}

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

.page-about__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, rgba(8, 22, 15, 1) 100%);
  border-radius: 15px;
}

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-about__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

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

.page-about__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-about__sub-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #22C768; /* Auxiliary */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-about__text-block {
  flex: 1;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
}

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

.page-about__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image-block--center {
  flex: none;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-about__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-about__feature-list li {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #22C768; /* Auxiliary */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.05rem;
}

.page-about__feature-list li strong {
  color: #F2C14E; /* Gold */
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for contrast */
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #22C768; /* Auxiliary */
  border: 2px solid #22C768;
}

.page-about__btn-secondary:hover {
  background-color: #22C768;
  color: #08160F; /* Dark background color for contrast */
}

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

.page-about__faq-section {
  background-color: #11271B; /* Card BG */
  padding: 80px 0;
}

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

.page-about__faq-item {
  background-color: #08160F; /* Background */
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #1E3A2A; /* Divider */
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid transparent; /* default */
  transition: border-bottom-color 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-question {
  border-bottom-color: #1E3A2A; /* Divider */
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Button top color */
}

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

.page-about__faq-item summary {
  list-style: none;
}

.page-about__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-about__faq-link {
  color: #2AD16F; /* Button top color */
  text-decoration: underline;
}

.page-about__faq-link:hover {
  color: #13994A; /* Button bottom color */
}

.page-about__conclusion-cta {
  text-align: center;
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__conclusion-text {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
}

.page-about__btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__content-grid {
    flex-direction: column;
  }
  .page-about__content-grid.--reverse-on-mobile {
    flex-direction: column-reverse;
  }
  .page-about__image-block--center {
    padding: 0 15px;
  }
}

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

  .page-about__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
    border-radius: 10px;
  }

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

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

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

  .page-about__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-about__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-about__text-block {
    font-size: 1rem;
  }

  .page-about__feature-list li {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

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

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

  .page-about__faq-section {
    padding: 50px 0;
  }

  .page-about__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .page-about__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }

  .page-about__conclusion-cta {
    padding: 50px 0;
  }

  .page-about__conclusion-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-about__btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  /* Mandatory image responsive styles */
  .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__hero-section,
  .page-about__hero-image-wrapper,
  .page-about__image-block,
  .page-about__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__hero-section { /* Override general padding for hero section */
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-about__hero-content { /* Ensure hero content has internal padding */
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-about__video-section { /* No video in this page, but keeping for completeness */
    padding-top: 10px !important;
  }
}