.page-payment-methods {
  color: #333333; /* Dark text for light body background */
}

.page-payment-methods__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000;
  overflow: hidden;
}

.page-payment-methods__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 800px;
}

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

.page-payment-methods__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-payment-methods__hero-buttons {
  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, transform 0.3s ease;
  font-size: 1.1em;
}

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

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

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

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

.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__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-payment-methods__overview-section {
  background-color: #f9f9f9;
}

.page-payment-methods__overview-title,
.page-payment-methods__deposit-title,
.page-payment-methods__withdrawal-title,
.page-payment-methods__security-title,
.page-payment-methods__faq-title,
.page-payment-methods__cta-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #000000;
}

.page-payment-methods__overview-text,
.page-payment-methods__deposit-intro,
.page-payment-methods__withdrawal-intro {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods__method-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods__method-icon {
  width: 250px; /* Min 200px */
  height: 167px; /* Min 200px */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  filter: none; /* Ensure no color filter */
}

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

.page-payment-methods__method-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 20px;
}

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

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

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

.page-payment-methods__deposit-steps-title,
.page-payment-methods__withdrawal-steps-title {
  font-size: 2em;
  margin-top: 60px;
  margin-bottom: 30px;
  color: #000000;
}

.page-payment-methods__deposit-steps,
.page-payment-methods__withdrawal-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.page-payment-methods__deposit-steps li,
.page-payment-methods__withdrawal-steps li {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-payment-methods__deposit-steps li strong,
.page-payment-methods__withdrawal-steps li strong {
  color: #FCBC45;
}

.page-payment-methods__verification-note {
  font-size: 1em;
  color: #777777;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  background-color: #fff8e1;
  border-left: 5px solid #FCBC45;
  text-align: left;
}

.page-payment-methods__security-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-payment-methods__security-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-payment-methods__security-image {
  width: 400px; /* Min 200px */
  height: 300px; /* Min 200px */
  object-fit: cover;
  border-radius: 10px;
  filter: none; /* Ensure no color filter */
}

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

.page-payment-methods__security-title {
  color: #FCBC45;
}

.page-payment-methods__security-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-payment-methods__security-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-payment-methods__security-features li {
  font-size: 1em;
  color: #f0f0f0;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.page-payment-methods__security-features li::before {
  content: '🔒';
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

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

.page-payment-methods__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.page-payment-methods__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

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

.page-payment-methods__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-payment-methods__cta-image {
  width: 600px; /* Min 200px */
  height: 338px; /* Min 200px */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filter */
}

.page-payment-methods__cta-title {
  color: #FCBC45;
}

.page-payment-methods__cta-text {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
}

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

/* Responsive Design */
@media (min-width: 769px) {
  .page-payment-methods__security-container {
    flex-direction: row;
    text-align: left;
  }

  .page-payment-methods__security-image {
    flex-shrink: 0;
    margin-right: 40px;
  }

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

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

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

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

  .page-payment-methods__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-payment-methods__overview-title,
  .page-payment-methods__deposit-title,
  .page-payment-methods__withdrawal-title,
  .page-payment-methods__security-title,
  .page-payment-methods__faq-title,
  .page-payment-methods__cta-title {
    font-size: 2em;
  }

  .page-payment-methods__deposit-steps-title,
  .page-payment-methods__withdrawal-steps-title {
    font-size: 1.8em;
  }

  .page-payment-methods__method-icon,
  .page-payment-methods__security-image,
  .page-payment-methods__cta-image {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
    filter: none; /* Ensure no color filter */
  }

  .page-payment-methods__security-container {
    flex-direction: column;
  }

  .page-payment-methods__security-image {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .page-payment-methods__security-features li {
    text-align: center;
    padding-left: 0;
  }

  .page-payment-methods__security-features li::before {
    position: static;
    display: block;
    margin-bottom: 5px;
  }

  .page-payment-methods__faq-question {
    font-size: 1.1em;
  }

  .page-payment-methods__cta-buttons {
    flex-direction: column;
  }
}