/* style/resources-gcash-payment-guide.css */
.page-resources-gcash-payment-guide {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-gcash-payment-guide__hero-section {
  background-color: #B80000; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-resources-gcash-payment-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-gcash-payment-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for main title */
  line-height: 1.2;
}

.page-resources-gcash-payment-guide__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-gcash-payment-guide__hero-image {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-gcash-payment-guide__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

.page-resources-gcash-payment-guide__content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-gcash-payment-guide__article-container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-gcash-payment-guide__section-title {
  font-size: 2.2em;
  color: #B80000; /* Main brand color for section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-gcash-payment-guide__sub-section-title {
  font-size: 1.6em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-gcash-payment-guide__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-resources-gcash-payment-guide__list,
.page-resources-gcash-payment-guide__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-gcash-payment-guide__numbered-list {
  list-style-type: decimal;
}

.page-resources-gcash-payment-guide__list-item {
  margin-bottom: 10px;
}

.page-resources-gcash-payment-guide__list-item strong {
  color: #B80000;
}

.page-resources-gcash-payment-guide__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-resources-gcash-payment-guide__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

.page-resources-gcash-payment-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA */
  color: #B80000; /* Main color for text on accent background */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources-gcash-payment-guide__cta-button:hover {
  background-color: #B80000;
  color: #FFD700;
  border-color: #B80000;
}

.page-resources-gcash-payment-guide__cta-button--inline {
  margin-top: 20px;
  margin-right: 15px;
}

.page-resources-gcash-payment-guide__cta-button--secondary {
  background-color: #f0f0f0;
  color: #B80000;
  border-color: #f0f0f0;
}

.page-resources-gcash-payment-guide__cta-button--secondary:hover {
  background-color: #B80000;
  color: #f0f0f0;
  border-color: #B80000;
}

.page-resources-gcash-payment-guide__action-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-gcash-payment-guide__faq-container {
  margin-top: 30px;
}

.page-resources-gcash-payment-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-resources-gcash-payment-guide__faq-question {
  font-size: 1.2em;
  color: #B80000;
  margin-bottom: 10px;
}

.page-resources-gcash-payment-guide__faq-answer {
  font-size: 1em;
  color: #555;
}

.page-resources-gcash-payment-guide a {
  color: #B80000;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-gcash-payment-guide a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-gcash-payment-guide__hero-section {
    padding: 60px 15px;
  }

  .page-resources-gcash-payment-guide__main-title {
    font-size: 2.2em;
  }

  .page-resources-gcash-payment-guide__intro-text {
    font-size: 1em;
  }

  .page-resources-gcash-payment-guide__content-area {
    padding: 30px 15px;
  }

  .page-resources-gcash-payment-guide__article-container {
    padding: 20px;
  }

  .page-resources-gcash-payment-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-gcash-payment-guide__sub-section-title {
    font-size: 1.4em;
  }

  .page-resources-gcash-payment-guide__paragraph,
  .page-resources-gcash-payment-guide__list-item,
  .page-resources-gcash-payment-guide__faq-answer {
    font-size: 0.95em;
  }

  .page-resources-gcash-payment-guide__image-wrapper img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure mobile images are not too small */
    min-height: 200px; /* Ensure mobile images are not too small */
  }

  .page-resources-gcash-payment-guide__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

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

  .page-resources-gcash-payment-guide__cta-button--inline {
    margin-right: 0;
  }
}