.page-g {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-g__section {
  padding: 60px 0;
  position: relative;
}

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

.page-g__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #A7D9B8;
  text-align: justify;
}

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

.page-g__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 40px;
}

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

.page-g__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.page-g__hero-title {
  font-size: 3.2em;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-g__hero-description {
  font-size: 1.3em;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-g__hero-cta-button,
.page-g__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-g__hero-cta-button:hover,
.page-g__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-g__cta-button--wide {
  min-width: 280px;
}

.page-g__cta-button--final {
  margin-top: 30px;
}

.page-g__list,
.page-g__benefit-list,
.page-g__guide-list,
.page-g__strategy-list,
.page-g__promo-list,
.page-g__responsibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-g__list-item,
.page-g__benefit-item,
.page-g__guide-item,
.page-g__strategy-item,
.page-g__promo-item,
.page-g__responsibility-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-g__list-title,
.page-g__benefit-title,
.page-g__guide-title,
.page-g__strategy-title,
.page-g__promo-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-g__list-item p,
.page-g__benefit-item p,
.page-g__guide-item p,
.page-g__strategy-item p,
.page-g__promo-item p {
  color: #A7D9B8;
  font-size: 1em;
}

.page-g__guide-link {
  display: inline-block;
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-g__guide-link:hover {
  color: #57E38D;
}

.page-g__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-g__responsibility-list {
  margin-top: 20px;
}

.page-g__responsibility-item {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 10px 0;
  color: #A7D9B8;
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-g__responsibility-item::before {
  content: '✔';
  color: #2AD16F;
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: bold;
}

.page-g__faq-wrapper {
  margin-top: 40px;
}

.page-g__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-g__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  background-color: #0A4B2C;
  user-select: none;
  list-style: none; /* For details/summary */
}

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

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

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

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

.page-g__faq-answer p {
  margin: 0;
  color: #A7D9B8;
}

/* Glow effect */
.page-g__hero-section::before,
.page-g__conclusion::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(87, 227, 141, 0.1) 0%, rgba(8, 22, 15, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-g__hero-title {
    font-size: 2.8em;
  }
  .page-g__hero-description {
    font-size: 1.2em;
  }
  .page-g__section-title {
    font-size: 2em;
  }
  .page-g__text-block {
    font-size: 1em;
  }
  .page-g__list-title,
  .page-g__benefit-title,
  .page-g__guide-title,
  .page-g__strategy-title,
  .page-g__promo-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-g__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }
  .page-g__hero-title {
    font-size: 2.2em;
  }
  .page-g__hero-description {
    font-size: 1em;
  }
  .page-g__hero-cta-button,
  .page-g__cta-button {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto;
    display: block;
    padding: 12px 25px;
    font-size: 1.1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-g__cta-button--wide {
    min-width: unset;
  }
  .page-g__section {
    padding: 40px 0;
  }
  .page-g__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-g__text-block,
  .page-g__responsibility-item p,
  .page-g__faq-answer p {
    font-size: 0.95em;
  }
  .page-g__list-item,
  .page-g__benefit-item,
  .page-g__guide-item,
  .page-g__strategy-item,
  .page-g__promo-item {
    padding: 20px;
  }
  .page-g__list-title,
  .page-g__benefit-title,
  .page-g__guide-title,
  .page-g__strategy-title,
  .page-g__promo-title {
    font-size: 1.2em;
  }
  .page-g__image {
    margin: 30px auto;
  }
  .page-g__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  
  /* Mobile specific image/video/button responsive styles */
  .page-g img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-g__section,
  .page-g__card,
  .page-g__container,
  .page-g__faq-wrapper,
  .page-g__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-g__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-g__cta-buttons,
  .page-g__button-group,
  .page-g__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-g__hero-title {
    font-size: 1.8em;
  }
  .page-g__hero-description {
    font-size: 0.9em;
  }
  .page-g__section-title {
    font-size: 1.5em;
  }
  .page-g__hero-cta-button,
  .page-g__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}