.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); /* Fixed header offset for desktop and mobile */
}

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

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

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

.page-payment-methods__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods__button--register {
  background-color: #000000; /* Main color for register */
  color: #FFFFFF; /* White text for register */
  border: 2px solid #000000;
  margin-right: 15px;
}

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

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

.page-payment-methods__button--login:hover {
  background-color: #e0a73d;
  border-color: #e0a73d;
}

.page-payment-methods__button--deposit {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
  width: 100%;
}

.page-payment-methods__button--deposit:hover {
  background-color: #e0a73d;
  border-color: #e0a73d;
}

/* Hero Section */
.page-payment-methods__hero-section {
  background-color: #000000; /* Dark background for hero */
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

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

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

.page-payment-methods__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Gold accent for title */
}

.page-payment-methods__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Why Choose Section */
.page-payment-methods__why-choose-section {
  background-color: #f8f8f8;
  padding: 80px 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: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-payment-methods__feature-icon {
  width: 100%; /* Ensure images fill card width */
  max-width: 400px; /* Max width for consistency */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-payment-methods__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

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

/* Deposit Section */
.page-payment-methods__deposit-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-payment-methods__method-card {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods__method-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

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

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

.page-payment-methods__method-details li strong {
  color: #000000;
}

/* Withdrawal Section */
.page-payment-methods__withdrawal-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.page-payment-methods__withdrawal-process {
  margin-top: 40px;
  text-align: center;
}

.page-payment-methods__process-list {
  list-style: decimal;
  text-align: left;
  max-width: 700px;
  margin: 20px auto 40px auto;
  padding-left: 20px;
  font-size: 1.1em;
}

.page-payment-methods__process-list li {
  margin-bottom: 15px;
  color: #444444;
}

.page-payment-methods__process-list li strong {
  color: #000000;
}

.page-payment-methods__process-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__withdrawal-notes {
  margin-top: 60px;
}

.page-payment-methods__notes-list {
  list-style: disc;
  text-align: left;
  max-width: 800px;
  margin: 20px auto 0 auto;
  padding-left: 20px;
  font-size: 1.05em;
  color: #444444;
}

.page-payment-methods__notes-list li {
  margin-bottom: 10px;
}

/* Security Section */
.page-payment-methods__security-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-payment-methods__security-item {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-payment-methods__security-description {
  font-size: 1em;
  color: #555555;
}

/* FAQ Section */
.page-payment-methods__faq-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

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

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

.page-payment-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-top: 15px;
  display: none;
  line-height: 1.5;
}

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

/* CTA Section */
.page-payment-methods__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

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

.page-payment-methods__cta-section .page-payment-methods__section-intro {
  color: #f0f0f0;
}

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

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

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding: 40px 0;
  }
  .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: 10px;
  }
  .page-payment-methods__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-payment-methods__button--register {
    margin-right: 0;
  }

  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__sub-title {
    font-size: 1.5em;
  }
  .page-payment-methods__section-intro {
    font-size: 1em;
  }

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

  .page-payment-methods__process-list,
  .page-payment-methods__notes-list {
    margin-left: 10px;
    padding-left: 10px;
  }

  /* Ensure all images within .page-payment-methods are responsive */
  .page-payment-methods img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Adjust object-fit for better mobile display */
  }
  .page-payment-methods__hero-image {
    object-fit: cover; /* Hero image still covers */
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-description {
    font-size: 0.9em;
  }
  .page-payment-methods__button {
    width: 90%;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__hero-content {
    padding: 20px 15px;
  }
  .page-payment-methods__container {
    padding: 0 15px;
  }
}