.page-about {
  font-family: Arial, sans-serif;
  color: var(--text-main, #F2FFF6); /* Default text color for the page */
  background-color: var(--bg-main, #08160F); /* Ensure body background is respected */
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(180deg, #11A84E 0%, #0A4B2C 100%); /* Deep green gradient */
}

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold, #F2C14E); /* Gold color for main title */
}

.page-about__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-main, #F2FFF6);
}

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-about__section {
  padding: 60px 0;
  background-color: var(--bg-main, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-about__section:nth-of-type(even) {
  background-color: var(--card-bg, #11271B);
}

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

.page-about__heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold, #F2C14E);
  line-height: 1.3;
}

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

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

.page-about__text-block {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  line-height: 1.8;
}

.page-about__text-block p {
  margin-bottom: 20px;
  color: var(--text-main, #F2FFF6);
}

.page-about__image-block {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-about__value-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__value-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-main, #F2FFF6);
}

.page-about__value-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--glow, #57E38D);
  font-weight: bold;
}

/* FAQ Section */
.page-about__faq {
  background-color: var(--bg-main, #08160F);
}

.page-about__faq-list {
  margin-top: 40px;
}

.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-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold, #F2C14E);
}

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

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--glow, #57E38D);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  content: '−';
  transform: rotate(180deg);
}

.page-about__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero-content {
    padding: 30px 15px;
  }

  .page-about__main-title {
    font-size: 2rem;
  }

  .page-about__description {
    font-size: 1rem;
  }

  .page-about__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

  .page-about__heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-about__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

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

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

  /* Image and video 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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

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

/* Color Contrast Adjustments */
/* Assuming body is dark background from shared.css, so page text is light */
.page-about__dark-bg {
  color: #ffffff; /* Deep Green background for hero, white text */
}

.page-about__light-bg {
  background-color: var(--card-bg, #11271B); /* Using a slightly lighter dark green for contrast */
  color: var(--text-main, #F2FFF6);
}

.page-about p, .page-about li {
  color: var(--text-main, #F2FFF6);
}

.page-about__text-block strong {
  color: var(--gold, #F2C14E);
}

/* Ensure image sizes are not smaller than 200px in content areas */
.page-about__image {
  min-width: 200px;
  min-height: 200px;
  max-width: 100%; /* Ensure responsiveness */
}

/* No filter properties for images */
.page-about__image, .page-about__hero-image {
  filter: none; /* Ensure no filters are applied */
}