.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;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-g__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

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

.page-g__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 15px;
  box-sizing: border-box;
}

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

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

.page-g__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-g__cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(34, 199, 104, 0.4);
}

.page-g__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-g__cta-button--secondary:hover {
  transform: translateY(-2px);
  background-color: #1E3A2A; /* Deep Green */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-g__section {
  padding: 80px 20px;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}

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

.page-g__section-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 1000px;
  margin: 0 auto 50px auto;
  text-align: center;
}

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

.page-g__image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.page-g__grid-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-g__grid-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-g__grid-title {
  font-size: 1.8rem;
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
}

.page-g__grid-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-g__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-g__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-g__step-card:hover {
  transform: translateY(-5px);
}

.page-g__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
}

.page-g__step-title {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-g__step-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-g__step-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-g__type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-g__type-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-g__type-card:hover {
  transform: translateY(-5px);
}

.page-g__type-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-g__type-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-g__type-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-g__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-g__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-g__feature-card:hover {
  transform: translateY(-5px);
}

.page-g__feature-title {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-g__feature-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-g__feature-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-g__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-g__faq-section {
  background-color: #0A4B2C; /* Deep Green */
}

.page-g__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.page-g__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  list-style: none;
}

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

.page-g__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

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

.page-g__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-g__conclusion {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-g__image-text-grid {
    grid-template-columns: 1fr;
  }
  .page-g__grid-image {
    order: -1;
  }
}

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

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

  .page-g__hero-description,
  .page-g__section-text {
    font-size: 0.95rem;
  }

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

  .page-g__section {
    padding: 60px 10px;
  }

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

  .page-g__grid-title,
  .page-g__step-title,
  .page-g__type-title,
  .page-g__feature-title {
    font-size: 1.4rem;
  }

  .page-g__grid-text,
  .page-g__step-description,
  .page-g__type-description,
  .page-g__feature-description,
  .page-g__faq-answer p {
    font-size: 0.9rem;
  }

  .page-g__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

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

  .page-g img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-g__hero-section,
  .page-g__image-text-grid,
  .page-g__steps-grid,
  .page-g__type-cards,
  .page-g__feature-grid,
  .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__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}