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

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

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

.page-g__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-g__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(17, 40, 27, 0.7); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-g__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  max-width: 100%;
  /* Use clamp for responsive font size, but not fixed values */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-g__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-g__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-g__btn-primary,
.page-g__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;
  text-align: center;
}

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

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

.page-g__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* A lighter shade of primary for contrast */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-g__btn-secondary:hover {
  background: #2E7A4E; /* Border color */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-g__section {
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.page-g__dark-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-g__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
}

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

.page-g__content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-g__content-wrapper p {
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-g__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border color */
}

.page-g__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2AD16F; /* Lighter shade of primary for contrast */
  margin-bottom: 15px;
}

.page-g__card p {
  color: #A7D9B8; /* Text Secondary */
}

.page-g__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-g__step-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-g__step-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2AD16F; /* Lighter shade of primary for contrast */
  margin-bottom: 15px;
}

.page-g__step-item p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-g__list-styled {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto 0;
}

.page-g__list-styled li {
  background-color: #11271B; /* Card BG */
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-g__list-styled h3 {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-g__list-styled p {
  color: #A7D9B8; /* Text Secondary */
}

.page-g__list-icon {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto 0;
}

.page-g__list-icon li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-g__list-icon li::before {
  content: '✔'; /* Checkmark icon */
  color: #2AD16F; /* Lighter shade of primary */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-g__list-promotions {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto 0;
}

.page-g__list-promotions li {
  background-color: #11271B; /* Card BG */
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
  color: #F2FFF6; /* Text Main */
}

.page-g__list-promotions li strong {
  color: #2AD16F; /* Lighter shade of primary */
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

.page-g__list-promotions li p {
  color: #A7D9B8; /* Text Secondary */
}

.page-g__list-support {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto 0;
}

.page-g__list-support li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-g__list-support li::before {
  content: '📞'; /* Phone icon */
  color: #2AD16F; /* Lighter shade of primary */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

.page-g__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-g__faq-question:hover {
  background-color: #2E7A4E; /* Border color */
}

.page-g__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2AD16F; /* Lighter shade of primary */
}

.page-g__faq-item[open] .page-g__faq-toggle {
  content: '−';
}

.page-g__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  background-color: #11271B; /* Card BG */
}

.page-g__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  display: block;
}

.page-g__image-content {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
  max-width: 800px; /* Constrain content images */
}

/* Responsive images, videos, buttons */
.page-g img,
.page-g video,
.page-g__video {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-g__video-container,
.page-g__video-wrapper,
.page-g__cta-buttons,
.page-g__section,
.page-g__card,
.page-g__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Mobile specific styles */
@media (max-width: 768px) {
  .page-g__hero-content {
    padding: 20px;
  }

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

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

  .page-g__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-g__btn-primary,
  .page-g__btn-secondary {
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-g__section {
    padding: 40px 15px;
  }

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

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

  .page-g__card,
  .page-g__step-item,
  .page-g__list-styled li,
  .page-g__list-promotions li,
  .page-g__faq-item {
    padding: 20px;
  }

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

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

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

  .page-g__video-section,
  .page-g__video-container,
  .page-g__video-wrapper,
  .page-g__cta-buttons,
  .page-g__button-group,
  .page-g__btn-container,
  .page-g__section,
  .page-g__card,
  .page-g__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-g__video-section {
    padding-top: 10px !important; /* Small top padding, body handles --header-offset */
  }

  .page-g__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-g__text-block p, .page-g__text-block li {
    font-size: 15px;
  }
}