.page-g {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-g__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  overflow: hidden;
  background-color: #08160F;
}

.page-g__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-g__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-g__main-title {
  font-size: clamp(2em, 5vw, 3em);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-g__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-g__btn-primary,
.page-g__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  width: auto; /* Default to auto, overridden by mobile media query */
}

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

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

.page-g__btn-secondary {
  background: none;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-g__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-g__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding */
  background-color: #08160F;
}

.page-g__video-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page-g__video {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-g__video-caption {
  margin-top: 20px;
  font-size: 1.1em;
  color: #A7D9B8;
  text-align: center;
}

.page-g__content-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #08160F;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-g__content-section:last-of-type {
  border-bottom: none;
}

.page-g__section-title {
  font-size: 2.5em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-g__sub-title {
  font-size: 1.8em;
  color: #22C768; /* Auxiliary Color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-g__text-block p {
  margin-bottom: 1em;
  color: #F2FFF6;
}

.page-g__text-block strong {
  color: #2AD16F;
}

.page-g__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #F2FFF6;
}

.page-g__list li {
  margin-bottom: 0.5em;
}

.page-g__image-container {
  margin-top: 40px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  overflow: hidden;
}

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

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

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

.page-g__faq-list {
  margin-top: 30px;
}

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

.page-g__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-g__faq-question:hover {
  background-color: rgba(34, 199, 104, 0.1);
}

.page-g__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
}

.page-g__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8;
  font-size: 0.95em;
  line-height: 1.5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-g__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-g__hero-description {
    font-size: 1em;
  }

  .page-g__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-g__btn-primary,
  .page-g__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-g__video-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-g__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-g__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-g__content-section {
    padding: 40px 15px;
  }

  .page-g__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-g__sub-title {
    font-size: 1.5em;
  }

  .page-g__text-block p,
  .page-g__list li,
  .page-g__faq-answer {
    font-size: 0.9em;
  }

  .page-g__image-container {
    margin-top: 30px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-g__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-g__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  .page-g__cta-buttons--centered {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
}