.page-about {
  font-family: Arial, sans-serif;
  color: var(--text-main, #F2FFF6); /* Default to Text Main for overall page */
  background-color: var(--background, #08160F); /* Default to Background color */
  line-height: 1.6;
}

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

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for visual separation */
  padding-bottom: 80px;
  color: var(--text-main, #F2FFF6);
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  background: rgba(8, 22, 15, 0.7); /* Background color with opacity */
  border-radius: 10px;
  margin-top: 100px; /* Push content down to avoid overlapping the very top of the image */
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--gold, #F2C14E);
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.125rem;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

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

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

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

.page-about__btn-secondary {
  background: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
  border: 2px solid var(--border, #2E7A4E);
}

.page-about__btn-secondary:hover {
  background: var(--deep-green, #0A4B2C);
  transform: translateY(-2px);
}

.page-about__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold, #F2C14E);
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__grid-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  text-align: left;
}

.page-about__grid-row--3-cols {
  justify-content: center;
  gap: 30px;
}

.page-about__grid-col-half {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-about__grid-row--3-cols .page-about__card {
  flex-basis: calc(33.333% - 20px);
  min-width: 280px;
  max-width: 380px;
}

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

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

.page-about__subsection-title {
  font-size: 1.8rem;
  color: var(--text-main, #F2FFF6);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__text-block {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
}

.page-about__text-block--center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__card {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-main, #F2FFF6);
  border: 1px solid var(--border, #2E7A4E);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-about__card-title {
  font-size: 1.5rem;
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.5;
}

.page-about__grid-row--2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  margin-top: 40px;
}

.page-about__card--commitment {
  text-align: left;
}

.page-about__btn-text {
  display: inline-block;
  margin-top: 20px;
  color: var(--glow, #57E38D);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__btn-text:hover {
  color: var(--text-main, #F2FFF6);
  text-decoration: underline;
}

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

.page-about__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C);
  position: relative;
  list-style: none;
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.5;
  border-top: 1px solid var(--divider, #1E3A2A);
}

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

.page-about__cta-section {
  background-color: var(--deep-green, #0A4B2C);
  padding: 60px 0;
  color: var(--text-main, #F2FFF6);
}

.page-about__cta-content {
  text-align: center;
}

.page-about__cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.125rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-content {
    margin-top: 50px;
  }

  .page-about__grid-row {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__grid-col-half {
    max-width: 100%;
  }

  .page-about__grid-row--reverse-mobile {
    flex-direction: column-reverse;
  }

  .page-about__grid-row--3-cols {
    grid-template-columns: 1fr 1fr;
  }

  .page-about__grid-row--3-cols .page-about__card {
    flex-basis: calc(50% - 15px);
    max-width: unset;
  }

  .page-about__grid-row--2-cols {
    grid-template-columns: 1fr;
  }
}

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

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

  .page-about__hero-content {
    margin-top: 20px;
    padding: 15px;
  }

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

  .page-about__hero-description,
  .page-about__cta-description {
    font-size: 1rem;
  }

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

  .page-about__subsection-title {
    font-size: 1.5rem;
  }

  .page-about__grid-row {
    gap: 20px;
  }

  .page-about__grid-col-half {
    min-width: unset;
  }

  .page-about__grid-row--3-cols {
    grid-template-columns: 1fr;
  }

  .page-about__grid-row--3-cols .page-about__card {
    flex-basis: 100%;
  }

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

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

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

  /* Mobile image and video responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section,
  .page-about__hero-content,
  .page-about__grid-row,
  .page-about__grid-col-half,
  .page-about__faq-list,
  .page-about__faq-item,
  .page-about__cta-section,
  .page-about__cta-content,
  .page-about__hero-cta,
  .page-about__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  
  .page-about__hero-section {
    padding-top: 10px !important;
  }

  .page-about__faq-question {
    font-size: 1rem;
  }
}