.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); /* Ensures content is not hidden by fixed header */
}

.page-payment-methods__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Fallback for content behind image */
}

.page-payment-methods__hero-container {
  position: relative;
  max-width: 1920px; /* Max width for the hero content container */
  margin: 0 auto;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image to ensure text readability */
}

.page-payment-methods__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  padding: 20px;
  max-width: 90%;
  z-index: 10;
}

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

.page-payment-methods__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.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, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__button--register, .page-payment-methods__button--register-final {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-payment-methods__button--deposit, .page-payment-methods__button--deposit-now, .page-payment-methods__button--login-final, .page-payment-methods__button--withdraw-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-payment-methods__button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.page-payment-methods__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.page-payment-methods__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding-bottom: 40px;
}

.page-payment-methods__feature-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__feature-icon {
  width: 200px; /* Min size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods__card-description {
  color: #666666;
  font-size: 0.95em;
}

.page-payment-methods__method-category {
  margin-bottom: 50px;
}

.page-payment-methods__category-title {
  font-size: 2em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #FCBC45;
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-payment-methods__method-icon {
  width: 200px; /* Min size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-payment-methods__method-name {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

.page-payment-methods__method-description {
  text-align: center;
  color: #666666;
  margin-bottom: 20px;
  max-width: 600px;
}

.page-payment-methods__method-details {
  list-style: none;
  padding: 0;
  text-align: center;
}

.page-payment-methods__method-details li {
  margin-bottom: 8px;
  color: #444444;
}

.page-payment-methods__call-to-action {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-payment-methods__call-to-action p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #000000;
}

.page-payment-methods__security-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-payment-methods__security-list li {
  background-color: #f0f0f0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 1.05em;
}

.page-payment-methods__security-list li strong {
  color: #000000;
  margin-right: 10px;
}

.page-payment-methods__security-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-payment-methods__responsible-gaming {
  text-align: center;
}

.page-payment-methods__responsible-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #555555;
}

.page-payment-methods__button--responsible {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-payment-methods__button--responsible:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-payment-methods__faq-container {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-payment-methods__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__faq-question {
  font-size: 1.25em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-answer {
  display: block;
}

.page-payment-methods__get-started {
  text-align: center;
}

.page-payment-methods__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods__hero-title {
    font-size: 2.8em;
  }
  .page-payment-methods__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-payment-methods__hero-image {
    height: 400px;
  }
  .page-payment-methods__section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__feature-icon,
  .page-payment-methods__method-icon {
    max-width: 100%;
    height: auto;
    width: 250px; /* Ensure min 200px, adjust for mobile visual */
  }
  .page-payment-methods__feature-card,
  .page-payment-methods__method-card {
    padding: 20px;
  }
  .page-payment-methods__category-title {
    font-size: 1.6em;
  }
  .page-payment-methods__method-name {
    font-size: 1.5em;
  }
  .page-payment-methods__faq-question {
    font-size: 1.1em;
  }
  .page-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__hero-content {
    padding: 15px;
  }
  .page-payment-methods {
    overflow-x: hidden;
  }
  .page-payment-methods img {
    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-image {
    height: 300px;
  }
  .page-payment-methods__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-payment-methods__section-title {
    font-size: 1.6em;
  }
  .page-payment-methods__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__feature-icon,
  .page-payment-methods__method-icon {
    width: 200px; /* Minimum size */
    height: auto;
  }
  .page-payment-methods__category-title {
    font-size: 1.4em;
  }
  .page-payment-methods__method-name {
    font-size: 1.3em;
  }
  .page-payment-methods__security-list li {
    font-size: 0.95em;
    padding: 10px 15px;
  }
}