.page-gcash-faq-troubleshooting {
  color: #000000; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-gcash-faq-troubleshooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-gcash-faq-troubleshooting__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 0;
  overflow: hidden;
}

.page-gcash-faq-troubleshooting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-gcash-faq-troubleshooting__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  z-index: 10;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-gcash-faq-troubleshooting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-gcash-faq-troubleshooting__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-gcash-faq-troubleshooting__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-gcash-faq-troubleshooting__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-gcash-faq-troubleshooting__button--register {
  background-color: #FFFFFF;
  color: #000000; /* Dark text for white button */
  border: 2px solid #FFFFFF;
}

.page-gcash-faq-troubleshooting__button--register:hover {
  background-color: #F0F0F0;
}

.page-gcash-faq-troubleshooting__button--login {
  background-color: #FCBC45;
  color: #000000; /* Dark text for yellow button */
  border: 2px solid #FCBC45;
}

.page-gcash-faq-troubleshooting__button--login:hover {
  background-color: #E6A83C;
}

.page-gcash-faq-troubleshooting__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-gcash-faq-troubleshooting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-gcash-faq-troubleshooting__introduction-section,
.page-gcash-faq-troubleshooting__issues-section,
.page-gcash-faq-troubleshooting__withdrawal-section,
.page-gcash-faq-troubleshooting__general-tips-section,
.page-gcash-faq-troubleshooting__contact-support-section,
.page-gcash-faq-troubleshooting__preventative-measures-section,
.page-gcash-faq-troubleshooting__faq-section,
.page-gcash-faq-troubleshooting__why-choose-section,
.page-gcash-faq-troubleshooting__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-gcash-faq-troubleshooting__issues-section,
.page-gcash-faq-troubleshooting__withdrawal-section,
.page-gcash-faq-troubleshooting__general-tips-section {
  background-color: #F5F5F5;
}

.page-gcash-faq-troubleshooting__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-gcash-faq-troubleshooting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gcash-faq-troubleshooting__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-gcash-faq-troubleshooting__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-gcash-faq-troubleshooting__card-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  flex-grow: 1;
}

.page-gcash-faq-troubleshooting__card-image {
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

.page-gcash-faq-troubleshooting__image--center {
  display: block;
  margin: 40px auto;
  max-width: 80%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-gcash-faq-troubleshooting__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-gcash-faq-troubleshooting__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gcash-faq-troubleshooting__list-item strong {
  color: #000000;
}

.page-gcash-faq-troubleshooting__support-channels {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-gcash-faq-troubleshooting__button--support {
  background-color: #FCBC45;
  color: #000000;
}

.page-gcash-faq-troubleshooting__button--support:hover {
  background-color: #E6A83C;
}

.page-gcash-faq-troubleshooting__button--email {
  background-color: #000000;
  color: #FFFFFF;
}

.page-gcash-faq-troubleshooting__button--email:hover {
  background-color: #333333;
}

.page-gcash-faq-troubleshooting__faq-accordion {
  margin-top: 30px;
}

.page-gcash-faq-troubleshooting__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gcash-faq-troubleshooting__faq-question {
  padding: 20px;
  font-size: 1.2em;
  color: #000000;
  cursor: pointer;
  position: relative;
  background-color: #F9F9F9;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-gcash-faq-troubleshooting__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

.page-gcash-faq-troubleshooting__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-gcash-faq-troubleshooting__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #FFFFFF;
}

.page-gcash-faq-troubleshooting__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-gcash-faq-troubleshooting__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-gcash-faq-troubleshooting__list--features {
  list-style-type: none;
  padding-left: 0;
}

.page-gcash-faq-troubleshooting__list--features .page-gcash-faq-troubleshooting__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.page-gcash-faq-troubleshooting__list--features .page-gcash-faq-troubleshooting__list-item::before {
  content: '✔️'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #FCBC45;
  font-size: 1.2em;
  top: 0;
}

.page-gcash-faq-troubleshooting__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-gcash-faq-troubleshooting__cta-section .page-gcash-faq-troubleshooting__section-title {
  color: #FFFFFF;
}

.page-gcash-faq-troubleshooting__cta-section .page-gcash-faq-troubleshooting__section-title::after {
  background-color: #FCBC45;
}

.page-gcash-faq-troubleshooting__cta-section .page-gcash-faq-troubleshooting__text-content {
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-gcash-faq-troubleshooting__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-gcash-faq-troubleshooting__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gcash-faq-troubleshooting__button--primary:hover {
  background-color: #E6A83C;
}

.page-gcash-faq-troubleshooting__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-gcash-faq-troubleshooting__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gcash-faq-troubleshooting__hero-title {
    font-size: 2.8em;
  }
  .page-gcash-faq-troubleshooting__hero-description {
    font-size: 1.1em;
  }
  .page-gcash-faq-troubleshooting__section-title {
    font-size: 2em;
  }
  .page-gcash-faq-troubleshooting__card-title {
    font-size: 1.3em;
  }
  .page-gcash-faq-troubleshooting__text-content,
  .page-gcash-faq-troubleshooting__list-item,
  .page-gcash-faq-troubleshooting__faq-question {
    font-size: 1em;
  }
  .page-gcash-faq-troubleshooting__image--center {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-gcash-faq-troubleshooting__hero-content {
    width: 95%;
    padding: 15px;
  }
  .page-gcash-faq-troubleshooting__hero-title {
    font-size: 2.2em;
  }
  .page-gcash-faq-troubleshooting__hero-description {
    font-size: 0.95em;
  }
  .page-gcash-faq-troubleshooting__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gcash-faq-troubleshooting__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-gcash-faq-troubleshooting__container {
    padding: 15px;
  }
  .page-gcash-faq-troubleshooting__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gcash-faq-troubleshooting__grid {
    grid-template-columns: 1fr;
  }
  .page-gcash-faq-troubleshooting__support-channels,
  .page-gcash-faq-troubleshooting__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gcash-faq-troubleshooting__support-channels .page-gcash-faq-troubleshooting__button,
  .page-gcash-faq-troubleshooting__cta-actions .page-gcash-faq-troubleshooting__button {
    width: 90%;
    margin: 0 auto;
  }
  .page-gcash-faq-troubleshooting__card-image,
  .page-gcash-faq-troubleshooting__image--center {
    max-width: 100%;
    height: auto; /* Ensure images scale correctly */
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
  }
  .page-gcash-faq-troubleshooting img {
    max-width: 100%;
    height: auto;
  }
}