.page-payment-methods {
  color: #333333; /* Dark text for light 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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content */
  padding: 0;
}

.page-payment-methods__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
}

.page-payment-methods__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7; /* Slightly dim image to make text stand out */
  z-index: 0;
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF; /* Light text on dark hero background */
  padding: 60px 20px;
  max-width: 900px;
}

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

.page-payment-methods__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-payment-methods__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-payment-methods__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for primary button */
  border: 2px solid #FCBC45;
}

.page-payment-methods__button--primary:hover {
  background-color: #e0a73b;
  transform: translateY(-2px);
}

.page-payment-methods__button--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Dark text for secondary button */
  border: 2px solid #FFFFFF;
}

.page-payment-methods__button--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #000000;
  padding-top: 40px;
}

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

.page-payment-methods__why-choose-section,
.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__faq-section,
.page-payment-methods__responsible-gaming-section,
.page-payment-methods__call-to-action-section {
  padding: 60px 0;
}

.page-payment-methods__why-choose-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__call-to-action-section {
  background-color: #f9f9f9;
}

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

.page-payment-methods__feature-card,
.page-payment-methods__method-card,
.page-payment-methods__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-payment-methods__feature-icon,
.page-payment-methods__method-icon,
.page-payment-methods__step-icon {
  width: 250px; /* Minimum 200px, setting to 250px for card */
  height: 180px; /* Adjust height to maintain aspect ratio */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  max-width: 100%;
}

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

.page-payment-methods__feature-description,
.page-payment-methods__method-description,
.page-payment-methods__step-description {
  font-size: 1em;
  color: #555555;
}

.page-payment-methods__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000; /* Dark background for CTA */
  border-radius: 12px;
  color: #FFFFFF;
}

.page-payment-methods__cta-title {
  font-size: 2em;
  margin-bottom: 25px;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-payment-methods__cta-block .page-payment-methods__button {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-payment-methods__cta-block .page-payment-methods__button:hover {
  background-color: #e0a73b;
}

.page-payment-methods__faq-list {
  margin-top: 50px;
}

.page-payment-methods__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-payment-methods__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  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 {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

.page-payment-methods__call-to-action-section {
  background-color: #000000; /* Dark background for final CTA */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-payment-methods__call-to-action-section .page-payment-methods__section-title {
  color: #FCBC45;
}

.page-payment-methods__call-to-action-section .page-payment-methods__section-intro {
  color: #f0f0f0;
}

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

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

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

  .page-payment-methods__features-grid,
  .page-payment-methods__method-grid,
  .page-payment-methods__withdrawal-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

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

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

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

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

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

  .page-payment-methods__features-grid,
  .page-payment-methods__method-grid,
  .page-payment-methods__withdrawal-steps {
    grid-template-columns: 1fr;
  }

  .page-payment-methods__why-choose-section,
  .page-payment-methods__deposit-section,
  .page-payment-methods__withdrawal-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__responsible-gaming-section,
  .page-payment-methods__call-to-action-section {
    padding: 40px 0;
  }

  .page-payment-methods__container {
    padding: 0 15px;
  }

  /* Mobile content image responsiveness */
  .page-payment-methods img {
    max-width: 100%;
    height: auto;
  }
}