.page-payment-methods {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding at the bottom for general content */
}

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

.page-payment-methods__hero-section {
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.page-payment-methods__heading {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-payment-methods__sub-heading {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__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, color 0.3s ease, transform 0.2s ease;
  min-width: 200px;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-payment-methods__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
}

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

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

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

.page-payment-methods__why-jl88, .page-payment-methods__deposit-methods, .page-payment-methods__withdrawal-methods, .page-payment-methods__security-tips, .page-payment-methods__faq, .page-payment-methods__cta-section {
  padding: 60px 0;
}

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

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

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

.page-payment-methods__feature-icon {
  width: 250px; /* Min size 200px */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-payment-methods__card-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

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

.page-payment-methods__method-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-payment-methods__method-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-payment-methods__method-card .page-payment-methods__button {
  margin-top: 20px;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  min-width: 150px;
}

.page-payment-methods__method-card .page-payment-methods__button:hover {
  background-color: #e0a53b;
}

.page-payment-methods__how-to-deposit, .page-payment-methods__how-to-withdraw {
  background-color: #f0f0f0;
  padding: 60px 0;
}

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

.page-payment-methods__step-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-payment-methods__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

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

.page-payment-methods__action-center {
  text-align: center;
  margin-top: 60px;
}

.page-payment-methods__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-payment-methods__tip-item {
  background-color: #f9f9f9;
  padding: 20px 25px;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333333;
}

.page-payment-methods__tip-item strong {
  color: #000000;
}

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

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

.page-payment-methods__faq-items {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.page-payment-methods__faq-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

.page-payment-methods__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

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

.page-payment-methods__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

@media (max-width: 768px) {
  .page-payment-methods {
    padding-bottom: 40px;
  }

  .page-payment-methods__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 60px;
  }

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

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

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

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

  .page-payment-methods__heading {
    font-size: 2em;
    padding-top: 30px;
  }

  .page-payment-methods__sub-heading {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-payment-methods__features-grid, .page-payment-methods__method-list, .page-payment-methods__steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-payment-methods__feature-card, .page-payment-methods__method-card, .page-payment-methods__step-item, .page-payment-methods__faq-item {
    padding: 20px;
  }

  .page-payment-methods__feature-icon {
    width: 250px;
    height: 200px;
  }

  .page-payment-methods__method-image {
    height: 200px;
  }

  .page-payment-methods__card-title {
    font-size: 1.4em;
  }

  .page-payment-methods__step-title {
    font-size: 1.2em;
  }

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

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

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

  /* Ensure images do not overflow */
  .page-payment-methods img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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