.page-payment-methods {
  color: #ffffff; /* Light text on dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-payment-methods__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1A202C; /* Main brand color for hero background */
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-payment-methods__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-payment-methods__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold accent for title */
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-payment-methods__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-payment-methods__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-payment-methods__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-payment-methods__overview-section,
.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__security-section,
.page-payment-methods__faq-section,
.page-payment-methods__support-section,
.page-payment-methods__cta-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: rgba(26, 32, 44, 0.85); /* Slightly transparent main color for sections */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-payment-methods__section-paragraph {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__key-features,
.page-payment-methods__method-grid,
.page-payment-methods__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-payment-methods__feature-card,
.page-payment-methods__method-card,
.page-payment-methods__security-item {
  background-color: rgba(40, 48, 60, 0.9);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-payment-methods__feature-card:hover,
.page-payment-methods__method-card:hover,
.page-payment-methods__security-item:hover {
  transform: translateY(-5px);
}

.page-payment-methods__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__card-text {
  font-size: 1em;
  color: #b0b0b0;
}

.page-payment-methods__method-icon {
  width: 200px; /* Minimum display size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it's a block element */
  margin-left: auto; /* Center the image */
  margin-right: auto; /* Center the image */
}

.page-payment-methods__card-list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  color: #cccccc;
}

.page-payment-methods__card-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-payment-methods__card-list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-payment-methods__action-area {
  text-align: center;
  margin-top: 50px;
}

.page-payment-methods__security-banner,
.page-payment-methods__support-banner {
  width: 100%;
  height: auto;
  max-width: 1000px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__faq-accordion {
  margin-top: 30px;
}

.page-payment-methods__faq-item {
  background-color: rgba(40, 48, 60, 0.9);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 18px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-payment-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #cccccc;
  padding: 0 25px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-payment-methods__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  padding: 0 25px 20px;
}

.page-payment-methods__contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-payment-methods__contact-button {
  display: inline-block;
  background-color: #1A202C;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-payment-methods__contact-button:hover {
  background-color: #FFD700;
  color: #1A202C;
}

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

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

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

  .page-payment-methods__section-paragraph {
    font-size: 0.95em;
  }

  .page-payment-methods__key-features,
  .page-payment-methods__method-grid,
  .page-payment-methods__security-features {
    grid-template-columns: 1fr;
  }

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

  .page-payment-methods__hero-image,
  .page-payment-methods__method-icon,
  .page-payment-methods__security-banner,
  .page-payment-methods__support-banner {
    max-width: 100%;
    height: auto;
  }

  .page-payment-methods__contact-options {
    flex-direction: column;
    align-items: center;
  }

  .page-payment-methods__contact-button {
    width: 80%;
    max-width: 300px;
  }
}

@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__section-title {
    font-size: 1.5em;
  }

  .page-payment-methods__hero-section {
    padding: 40px 15px;
  }

  .page-payment-methods__overview-section,
  .page-payment-methods__deposit-section,
  .page-payment-methods__withdrawal-section,
  .page-payment-methods__security-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__support-section,
  .page-payment-methods__cta-section {
    padding: 25px 15px;
    margin: 20px auto;
  }
}