.page-payment-methods {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-payment-methods__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  min-height: 500px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
}

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

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

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

.page-payment-methods__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

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

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

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

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

.page-payment-methods__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
}

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

.page-payment-methods__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-payment-methods__overview-section,
.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__security-section,
.page-payment-methods__tips-section,
.page-payment-methods__faq-section,
.page-payment-methods__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-payment-methods__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

.page-payment-methods__method-card,
.page-payment-methods__feature-item,
.page-payment-methods__faq-item {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods__method-card img,
.page-payment-methods__feature-item img {
  width: 100%; /* Ensures image fills card width */
  max-width: 400px; /* Constrain max width */
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-width: 200px;
  min-
}

.page-payment-methods__method-title,
.page-payment-methods__feature-title,
.page-payment-methods__faq-question {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__method-description,
.page-payment-methods__feature-text,
.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-payment-methods__method-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
  width: 100%;
}

.page-payment-methods__method-features li {
  font-size: 0.95em;
  color: #444444;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.page-payment-methods__method-features li::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-payment-methods__button--deposit,
.page-payment-methods__button--withdraw {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: auto;
}

.page-payment-methods__button--deposit:hover,
.page-payment-methods__button--withdraw:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-payment-methods__note {
  font-size: 0.95em;
  color: #777777;
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #F0F0F0;
  border-radius: 8px;
}

.page-payment-methods__note a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods__note a:hover {
  text-decoration: underline;
}

.page-payment-methods__security-callout {
  font-size: 1.1em;
  color: #444444;
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #E6F7FF;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
}

.page-payment-methods__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-payment-methods__tips-list li {
  background-color: #F8F8F8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1.05em;
  color: #444444;
  position: relative;
  padding-left: 45px;
  text-align: left;
}

.page-payment-methods__tips-list li::before {
  content: '💡';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3em;
}

.page-payment-methods__faq-item {
  text-align: left;
}

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-payment-methods__faq-question::before {
  content: 'Q:';
  color: #FCBC45;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #666666;
  padding-left: 30px;
}

.page-payment-methods__faq-answer::before {
  content: 'A:';
  color: #000000;
  font-weight: bold;
  position: absolute;
  left: 0;
  margin-top: 2px;
}

.page-payment-methods__faq-contact {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #555555;
}

.page-payment-methods__faq-contact a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods__faq-contact a:hover {
  text-decoration: underline;
}

.page-payment-methods__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.page-payment-methods__cta-section .page-payment-methods__section-title {
  color: #FFFFFF;
}

.page-payment-methods__cta-section .page-payment-methods__section-description {
  color: #F0F0F0;
}

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

.page-payment-methods__button--register-large {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-payment-methods__button--register-large:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-payment-methods__button--login-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-payment-methods__button--login-large:hover {
  background-color: transparent;
  color: #FCBC45;
}

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

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

  .page-payment-methods__methods-grid,
  .page-payment-methods__security-features,
  .page-payment-methods__faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding: 60px 15px 30px;
    min-height: 400px;
  }

  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }

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

  .page-payment-methods__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-payment-methods__overview-section,
  .page-payment-methods__deposit-section,
  .page-payment-methods__withdrawal-section,
  .page-payment-methods__security-section,
  .page-payment-methods__tips-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__cta-section {
    padding: 40px 15px;
  }

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

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

  .page-payment-methods__method-card img,
  .page-payment-methods__feature-item img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-
  }

  .page-payment-methods__method-title,
  .page-payment-methods__feature-title,
  .page-payment-methods__faq-question {
    font-size: 1.5em;
  }

  .page-payment-methods__tips-list li {
    font-size: 0.9em;
    padding-left: 35px;
  }

  .page-payment-methods__tips-list li::before {
    left: 10px;
    font-size: 1.1em;
  }

  .page-payment-methods__faq-question,
  .page-payment-methods__faq-answer {
    padding-left: 25px;
  }

  .page-payment-methods__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods__button--register-large,
  .page-payment-methods__button--login-large {
    width: 80%;
    max-width: 300px;
  }

  .page-payment-methods__hero-image img,
  .page-payment-methods__method-card img,
  .page-payment-methods__feature-item img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-payment-methods__button,
  .page-payment-methods__button--register-large,
  .page-payment-methods__button--login-large {
    width: 100%;
  }

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