.page-payment-methods-gcash-guide {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Matches body background */
  line-height: 1.6;
}

.page-payment-methods-gcash-guide__hero-section {
  position: relative;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #000000; /* Dark background for hero content */
}

.page-payment-methods-gcash-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-payment-methods-gcash-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-payment-methods-gcash-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-payment-methods-gcash-guide__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem); /* Responsive font size */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-payment-methods-gcash-guide__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-payment-methods-gcash-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-payment-methods-gcash-guide__register-btn,
.page-payment-methods-gcash-guide__login-btn,
.page-payment-methods-gcash-guide__deposit-btn,
.page-payment-methods-gcash-guide__withdraw-btn,
.page-payment-methods-gcash-guide__download-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-payment-methods-gcash-guide__register-btn {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-payment-methods-gcash-guide__register-btn:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-payment-methods-gcash-guide__login-btn {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-payment-methods-gcash-guide__login-btn:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-payment-methods-gcash-guide__section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-gcash-guide__section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-payment-methods-gcash-guide__section-description,
.page-payment-methods-gcash-guide__note-text,
.page-payment-methods-gcash-guide__final-cta {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods-gcash-guide__features-list,
.page-payment-methods-gcash-guide__step-list,
.page-payment-methods-gcash-guide__issues-list,
.page-payment-methods-gcash-guide__security-tips {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-payment-methods-gcash-guide__feature-item,
.page-payment-methods-gcash-guide__step-item,
.page-payment-methods-gcash-guide__issue-item,
.page-payment-methods-gcash-guide__tip-item {
  background-color: #F9F9F9;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-payment-methods-gcash-guide__feature-item strong,
.page-payment-methods-gcash-guide__step-item h3,
.page-payment-methods-gcash-guide__issue-item h3,
.page-payment-methods-gcash-guide__tip-item h3 {
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.page-payment-methods-gcash-guide__step-item p,
.page-payment-methods-gcash-guide__issue-item p,
.page-payment-methods-gcash-guide__tip-item p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.page-payment-methods-gcash-guide__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
}

.page-payment-methods-gcash-guide__link:hover {
  text-decoration: underline;
}

.page-payment-methods-gcash-guide__image-container {
  margin: 20px auto;
  text-align: center;
}

.page-payment-methods-gcash-guide__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-payment-methods-gcash-guide__cta-center {
  text-align: center;
  margin-top: 30px;
}

.page-payment-methods-gcash-guide__deposit-btn,
.page-payment-methods-gcash-guide__withdraw-btn {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
}

.page-payment-methods-gcash-guide__deposit-btn:hover,
.page-payment-methods-gcash-guide__withdraw-btn:hover {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  transform: translateY(-3px);
}

.page-payment-methods-gcash-guide__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-payment-methods-gcash-guide__info-card {
  background-color: #F0F0F0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-payment-methods-gcash-guide__card-title {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 15px;
}

.page-payment-methods-gcash-guide__info-card p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #555555;
}

.page-payment-methods-gcash-guide__info-card p strong {
  color: #000000;
}

.page-payment-methods-gcash-guide__download-btn {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
}

.page-payment-methods-gcash-guide__download-btn:hover {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .page-payment-methods-gcash-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-payment-methods-gcash-guide__main-title {
    font-size: clamp(1.75rem, 8vw, 2rem);
  }

  .page-payment-methods-gcash-guide__intro-text {
    font-size: 1rem;
  }

  .page-payment-methods-gcash-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods-gcash-guide__register-btn,
  .page-payment-methods-gcash-guide__login-btn,
  .page-payment-methods-gcash-guide__deposit-btn,
  .page-payment-methods-gcash-guide__withdraw-btn,
  .page-payment-methods-gcash-guide__download-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-payment-methods-gcash-guide__section {
    margin: 30px auto;
    padding: 15px;
  }

  .page-payment-methods-gcash-guide__section-title {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
  }

  .page-payment-methods-gcash-guide__feature-item,
  .page-payment-methods-gcash-guide__step-item,
  .page-payment-methods-gcash-guide__issue-item,
  .page-payment-methods-gcash-guide__tip-item {
    padding: 15px;
  }

  .page-payment-methods-gcash-guide__image-container img {
    max-width: 100%;
    height: auto; /* Ensures images are responsive and don't overflow */
  }

  /* Ensure all content area images are responsive and don't cause overflow */
  .page-payment-methods-gcash-guide img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-gcash-guide__main-title {
    font-size: clamp(1.75rem, 9vw, 1.8rem);
  }

  .page-payment-methods-gcash-guide__section-title {
    font-size: clamp(1.5rem, 7vw, 1.6rem);
  }

  .page-payment-methods-gcash-guide__info-grid {
    grid-template-columns: 1fr;
  }
}