.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default to light text for dark body background */
  background-color: var(--background-color); /* #08160F */
}

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

.page-about__dark-section {
  background-color: var(--deep-green); /* #0A4B2C */
  color: var(--text-main); /* #F2FFF6 */
}

.page-about__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-about__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main); /* #F2FFF6 */
}

.page-about__light-bg .page-about__section-title {
  color: #000000;
}

.page-about__intro-text {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-about__light-bg .page-about__intro-text {
  color: #555555;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

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

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

.page-about__main-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--gold); /* #F2C14E */
  letter-spacing: -0.5px;
}

.page-about__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 40px;
  color: var(--text-main); /* #F2FFF6 */
}

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

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

.page-about__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-about__btn-secondary {
  background-color: transparent;
  color: var(--text-main); /* #F2FFF6 */
  border: 2px solid var(--border-color); /* #2E7A4E */
  margin-left: 20px;
}

.page-about__btn-secondary:hover {
  background-color: var(--border-color); /* #2E7A4E */
  color: var(--text-main); /* #F2FFF6 */
  transform: translateY(-2px);
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Story Section */
.page-about__story-section {
  padding: 80px 0;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.page-about__text-block {
  padding: 20px 0;
}

.page-about__text-block p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #444444;
}

.page-about__light-bg .page-about__text-block p {
  color: #444444;
}

.page-about__image-block {
  text-align: center;
}

.page-about__image-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: block;
}

/* Values Section */
.page-about__values-section {
  padding: 80px 0;
  background-color: var(--background-color); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

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

.page-about__value-card {
  background-color: var(--card-bg); /* #11271B */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
}

.page-about__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--gold); /* #F2C14E */
}

.page-about__value-card p {
  font-size: 16px;
  color: var(--text-secondary); /* #A7D9B8 */
}

/* Why Choose Us Section */
.page-about__why-choose-us {
  padding: 80px 0;
}

.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-about__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-about__feature-item:hover {
  transform: translateY(-5px);
}

.page-about__feature-icon {
  width: 120px; /* Display size */
  height: 120px; /* Display size */
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid var(--border-color); /* #2E7A4E */
}

.page-about__feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111111;
}

.page-about__feature-item p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 15px;
}

.page-about__text-link {
  color: var(--primary-color); /* #11A84E */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-about__text-link:hover {
  color: var(--secondary-color); /* #22C768 */
  text-decoration: underline;
}

/* Security Section */
.page-about__security-section {
  padding: 80px 0;
}

/* FAQ Section */
.page-about__faq-section {
  padding: 80px 0;
}

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

.page-about__faq-item {
  background-color: var(--card-bg); /* #11271B */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main); /* #F2FFF6 */
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px; /* Sufficiently large */
  padding-bottom: 20px;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--card-bg); /* #11271B */
  color: var(--text-main); /* #F2FFF6 */
  border-bottom: 1px solid var(--divider); /* #1E3A2A */
}

.page-about__faq-item:last-child .page-about__faq-question {
  border-bottom: none;
}

.page-about__faq-question:hover {
  opacity: 0.9;
}

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

.page-about__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold); /* #F2C14E */
}

.page-about__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-bottom 0.3s ease-out;
}

.page-about__faq-answer p {
  font-size: 16px;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 0;
}

/* Details tag specific styles */
.page-about__faq-item[open] .page-about__faq-answer {
  max-height: fit-content; /* Allow content to dictate height */
  padding-bottom: 20px;
}

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

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

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

/* CTA Bottom Section */
.page-about__cta-bottom {
  padding: 60px 0;
  text-align: center;
}

.page-about__cta-bottom .page-about__section-title {
  color: var(--text-main); /* #F2FFF6 */
}

.page-about__cta-bottom .page-about__intro-text {
  color: var(--text-secondary); /* #A7D9B8 */
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__content-grid {
    grid-template-columns: 1fr;
  }

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

  .page-about__image-block {
    order: -1; /* Move image above text on smaller screens for content-grid */
    margin-bottom: 30px;
  }

  .page-about__btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }

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

@media (max-width: 768px) {
  .page-about__section-title {
    font-size: 32px;
  }

  .page-about__main-title {
    font-size: 42px;
  }

  .page-about__hero-description {
    font-size: 18px;
  }

  .page-about__hero-section,
  .page-about__story-section,
  .page-about__values-section,
  .page-about__why-choose-us,
  .page-about__security-section,
  .page-about__faq-section,
  .page-about__cta-bottom {
    padding: 40px 0;
  }

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

  .page-about__text-block p {
    font-size: 16px;
  }

  /* Mobile responsive for images */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive for video */
  .page-about video,
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive for containers */
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section,
  .page-about__story-section,
  .page-about__values-section,
  .page-about__why-choose-us,
  .page-about__security-section,
  .page-about__faq-section,
  .page-about__cta-bottom,
  .page-about__video-section,
  .page-about__video-container,
  .page-about__video-wrapper,
  .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;
    overflow: hidden !important;
  }

  /* Mobile responsive for buttons */
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-about__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }

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

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 36px;
  }

  .page-about__hero-description {
    font-size: 16px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    padding: 12px 20px;
  }

  .page-about__feature-icon {
    width: 100px;
    height: 100px;
  }

  .page-about__card-title {
    font-size: 20px;
  }

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

/* Color Contrast */
.page-about {
  color: var(--text-main); /* #F2FFF6 for body background #08160F */
}

.page-about__light-bg {
  color: #333333; /* Dark text for light background */
}

.page-about__card {
  background-color: var(--card-bg); /* #11271B */
  color: var(--text-main); /* #F2FFF6 */
}

.page-about__light-bg .page-about__card {
  background-color: #ffffff;
  color: #333333;
}

.page-about__btn-primary {
  color: var(--text-main); /* #F2FFF6 */
}

.page-about__btn-secondary {
  color: var(--text-main); /* #F2FFF6 */
}

.page-about__light-bg .page-about__btn-secondary {
  color: var(--primary-color); /* #11A84E */
}