.page-payment-methods {
  color: #FFFFFF; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Ensure consistency, though body bg is shared */
  padding-top: var(--header-offset, 120px);
}

.page-payment-methods__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
}

.page-payment-methods__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
  z-index: 0;
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #FFFFFF;
}

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

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

.page-payment-methods__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

.page-payment-methods__hero-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

.page-payment-methods__hero-button--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-3px);
}

.page-payment-methods__hero-button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-payment-methods__hero-button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-payment-methods__overview-section,
.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__faq-section,
.page-payment-methods__call-to-action {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter black for sections */
  margin-bottom: 20px;
}

.page-payment-methods__section-title {
  font-size: 2.8em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}

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

.page-payment-methods__section-description {
  font-size: 1.1em;
  color: #F0F0F0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-payment-methods__features-grid,
.page-payment-methods__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__feature-item,
.page-payment-methods__method-card {
  background-color: #1a1a1a; /* Darker card background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__feature-item:hover,
.page-payment-methods__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-payment-methods__feature-icon,
.page-payment-methods__method-image {
  width: 100%; /* Ensure images fill their container */
  height: 200px; /* Fixed height for consistency */
  object-fit: contain; /* Maintain aspect ratio */
  margin-bottom: 25px;
  border-radius: 8px;
  display: block; /* Remove extra space below image */
}

.page-payment-methods__feature-title,
.page-payment-methods__method-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-payment-methods__feature-text,
.page-payment-methods__method-text {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-payment-methods__method-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-payment-methods__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #1a1a1a;
  border-radius: 12px;
}

.page-payment-methods__cta-text {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 25px;
}

.page-payment-methods__cta-button {
  display: inline-block;
  padding: 18px 35px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-payment-methods__faq-section {
  background-color: #0d0d0d;
}

.page-payment-methods__faq-item {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__faq-question {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  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;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-payment-methods__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-payment-methods__call-to-action {
  background: linear-gradient(45deg, #000000, #333333);
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods__cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-payment-methods__cta-content {
  max-width: 800px;
}

.page-payment-methods__cta-title {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-payment-methods__cta-description {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 40px;
}

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

.page-payment-methods__cta-button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-payment-methods__cta-button--register:hover {
  background-color: #e0a53b;
}

.page-payment-methods__cta-button--promo {
  background-color: #FFFFFF;
  color: #000000;
}

.page-payment-methods__cta-button--promo:hover {
  background-color: #F0F0F0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-methods__hero-title {
    font-size: 3em;
  }
  .page-payment-methods__section-title {
    font-size: 2.5em;
  }
  .page-payment-methods__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding: 60px 15px;
  }
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-payment-methods__overview-section,
  .page-payment-methods__deposit-section,
  .page-payment-methods__withdrawal-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__call-to-action {
    padding: 40px 0;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__section-description {
    font-size: 0.95em;
  }
  .page-payment-methods__features-grid,
  .page-payment-methods__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__feature-icon,
  .page-payment-methods__method-image {
    max-width: 100%;
    height: auto;
  }
  .page-payment-methods__feature-title,
  .page-payment-methods__method-title {
    font-size: 1.5em;
  }
  .page-payment-methods__cta-text {
    font-size: 1.2em;
  }
  .page-payment-methods__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-payment-methods__cta-title {
    font-size: 2em;
  }
  .page-payment-methods__cta-description {
    font-size: 1em;
  }
  .page-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-button {
    width: 100%;
    margin: 5px 0;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__cta-title {
    font-size: 1.8em;
  }
  .page-payment-methods__faq-question {
    font-size: 1.1em;
  }
}