.page-payment-methods {
  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-payment-methods__hero-section {
  background-color: #003366; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-payment-methods__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-payment-methods__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-payment-methods__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for primary CTA */
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.page-payment-methods__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-payment-methods__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  margin-top: -40px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 3;
}

.page-payment-methods__article-heading {
  font-size: 2.2em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-payment-methods__sub-heading {
  font-size: 1.6em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-payment-methods__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444444;
}

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

.page-payment-methods__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-payment-methods__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444444;
}

.page-payment-methods__list-item strong {
  color: #003366;
}

.page-payment-methods__cta-button {
  display: inline-block;
  background-color: #003366;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__cta-button:hover {
  background-color: #002244;
  transform: translateY(-1px);
}

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

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-payment-methods__faq-answer {
  font-size: 1.0em;
  color: #555555;
}

.page-payment-methods__cta-banner {
  background-color: #003366;
  color: #ffffff;
  padding: 50px 20px;
  border-radius: 10px;
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-payment-methods__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-payment-methods__cta-button--large {
  padding: 18px 35px;
  font-size: 1.4em;
  background-color: #FFD700;
  color: #003366;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__cta-button--large:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-payment-methods__hero-title {
    font-size: 2.2em;
  }

  .page-payment-methods__hero-description {
    font-size: 1.1em;
  }

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

  .page-payment-methods__content-area {
    padding: 20px 15px;
    margin-top: -20px;
  }

  .page-payment-methods__article-heading {
    font-size: 1.8em;
    margin-top: 30px;
  }

  .page-payment-methods__sub-heading {
    font-size: 1.4em;
  }

  .page-payment-methods__article-paragraph,
  .page-payment-methods__list-item,
  .page-payment-methods__faq-answer {
    font-size: 1.0em;
  }

  .page-payment-methods__faq-question {
    font-size: 1.2em;
  }

  .page-payment-methods__cta-banner {
    padding: 30px 15px;
  }

  .page-payment-methods__cta-title {
    font-size: 1.8em;
  }

  .page-payment-methods__cta-text {
    font-size: 1.0em;
  }

  .page-payment-methods__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }

  /* Mobile content image overflow prevention */
  .page-payment-methods__article-image,
  .page-payment-methods__cta-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 1.8em;
  }

  .page-payment-methods__hero-description {
    font-size: 0.9em;
  }

  .page-payment-methods__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-payment-methods__article-heading {
    font-size: 1.6em;
  }

  .page-payment-methods__sub-heading {
    font-size: 1.2em;
  }

  .page-payment-methods__cta-title {
    font-size: 1.5em;
  }

  .page-payment-methods__cta-button--large {
    font-size: 1.0em;
    padding: 12px 25px;
  }
}