/* style/about.css */
/* Body background color: #08160F (dark) -> text color should be light (#F2FFF6) */

.page-about {
  color: #F2FFF6; /* Main text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #08160F; /* Ensure consistency, though body handles main background */
}

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

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-about__hero-content {
  text-align: center;
  padding: 30px 20px;
  max-width: 900px;
  margin-top: -150px; /* Overlap slightly for visual effect, but not text on image */
  position: relative;
  z-index: 1;
  background: rgba(8, 22, 15, 0.8); /* Dark background for text readability */
  border-radius: 10px;
  padding-top: 180px; /* Adjust padding to ensure text does not overlay image */
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: bold;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-about__hero-description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

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

.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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Light text for dark button */
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

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

.page-about__btn-secondary {
  background: #11271B; /* Card BG color */
  color: #57E38D; /* Glow color */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-about__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
  transform: translateY(-2px);
}

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

.page-about__container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-about__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold for section titles */
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-about__section-title--light {
  color: #F2FFF6;
}

.page-about__text-block {
  font-size: 1.05em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__text-block--light {
  color: #F2FFF6;
}

.page-about__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #57E38D; /* Glow color */
  margin-bottom: 20px;
  text-align: left;
}

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

.page-about__grid-item {
  background-color: #11271B; /* Card BG color */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
}

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

.page-about__image-content--center {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  max-width: 800px;
}

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

.page-about__feature-card {
  background-color: #11271B; /* Card BG color */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

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

.page-about__card-text {
  color: #A7D9B8;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-about__btn-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-about__btn-link:hover {
  background-color: #13994A;
}

.page-about__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

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

.page-about__commitment-item {
  background-color: #11271B; /* Card BG color */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  text-align: center;
}

.page-about__commitment-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px #57E38D);
}

.page-about__commitment-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #F2C14E; /* Gold color */
  margin-bottom: 15px;
}

.page-about__commitment-text {
  color: #A7D9B8;
}

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

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #F2FFF6;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A;
  list-style: none; /* For details/summary */
}

.page-about__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #57E38D;
}

.page-about__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #A7D9B8;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-about__faq-answer p {
  margin-bottom: 15px;
  color: #A7D9B8;
}

.page-about__section--cta {
  text-align: center;
  padding: 80px 20px;
}

.page-about__container--center-text {
  text-align: center;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-image {
    max-height: 500px;
  }
  .page-about__hero-content {
    margin-top: -100px;
    padding-top: 130px;
  }
  .page-about__main-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__grid-two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-about__hero-image {
    max-height: 350px;
  }
  .page-about__hero-content {
    margin-top: -70px;
    padding-top: 100px;
    padding: 20px 15px;
  }
  .page-about__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__section,
  .page-about__container,
  .page-about__grid-item,
  .page-about__feature-card,
  .page-about__commitment-item,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-about__hero-image,
  .page-about__image-content,
  .page-about__commitment-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__sub-title {
    font-size: 1.5em;
  }
  .page-about__commitment-icon {
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-about__faq-question {
    font-size: 1.1em;
  }
  .page-about__faq-answer {
    font-size: 0.95em;
  }
  .page-about__video-section {
    padding-top: 10px !important;
  }
}