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

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

.page-payment-methods__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding-bottom: 60px; /* Add some padding below content */
}

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

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

.page-payment-methods__hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 20px 60px;
  max-width: 800px;
}

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

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

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

.page-payment-methods__btn {
  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, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-payment-methods__btn--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

.page-payment-methods__btn--register:hover {
  background-color: #e0e0e0;
}

.page-payment-methods__btn--login {
  background-color: #FCBC45; /* Login/Download button color */
  color: #000000;
}

.page-payment-methods__btn--login:hover {
  background-color: #fca01e;
}

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

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

.page-payment-methods__section-intro {
  font-size: 1.05em;
  color: #444444;
  text-align: justify;
  margin-bottom: 20px;
}

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

.page-payment-methods__card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-payment-methods__card:hover {
  transform: translateY(-5px);
}

.page-payment-methods__card-image {
  width: 100%; /* Ensure card images are responsive */
  height: 250px; /* Fixed height for consistency */
  object-fit: contain; /* Contain the image within its box */
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Enforce min width */
  min-height: 200px; /* Enforce min height */
}

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

.page-payment-methods__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-payment-methods__card-features li {
  color: #444444;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

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

.page-payment-methods__btn--deposit, .page-payment-methods__btn--withdraw {
  margin-top: auto; /* Push button to bottom of card */
  background-color: #FCBC45; /* Accent color for deposit/withdraw buttons */
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
}

.page-payment-methods__btn--deposit:hover, .page-payment-methods__btn--withdraw:hover {
  background-color: #fca01e;
}

.page-payment-methods__subsection-title {
  font-size: 2em;
  color: #000000;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

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

.page-payment-methods__steps-list li {
  background-color: #f0f0f0;
  border-left: 5px solid #FCBC45;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #333333;
}

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

.page-payment-methods__security-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

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

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

.page-payment-methods__feature-icon {
  width: 100px; /* Fixed width for icons */
  height: 100px; /* Fixed height for icons */
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min width */
  min-height: 200px; /* Enforce min height */
}

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

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

.page-payment-methods__security-outro {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #444444;
}

.page-payment-methods__faq-section {
  padding: 60px 0;
}

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

.page-payment-methods__accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-payment-methods__accordion-header {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-payment-methods__accordion-header:hover {
  background-color: #fca01e;
}

.page-payment-methods__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-payment-methods__accordion-content {
  padding: 0 25px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-payment-methods__accordion-content.active {
  max-height: 500px; /* Adjust based on expected content height */
  padding: 20px 25px;
}

.page-payment-methods__accordion-content p {
  margin: 0;
  color: #444444;
}

.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: #FFFFFF;
}

.page-payment-methods__cta-section .page-payment-methods__section-subtitle {
  color: #e0e0e0;
}

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

.page-payment-methods__btn--primary {
  background-color: #FCBC45; /* Primary CTA button */
  color: #000000;
}

.page-payment-methods__btn--primary:hover {
  background-color: #fca01e;
}

.page-payment-methods__btn--secondary {
  background-color: #FFFFFF; /* Secondary CTA button */
  color: #000000;
}

.page-payment-methods__btn--secondary:hover {
  background-color: #e0e0e0;
}

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

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

@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__btn {
    width: 80%;
    max-width: 300px;
  }

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

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

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

  .page-payment-methods__feature-item {
    padding: 20px;
  }

  .page-payment-methods__feature-icon {
    width: 80px;
    height: 80px;
    min-width: 200px; /* Enforce min width */
    min-height: 200px; /* Enforce min height */
  }

  .page-payment-methods__card-image {
    height: 200px; /* Adjust height for mobile */
    min-width: 200px; /* Enforce min width */
    min-height: 200px; /* Enforce min height */
  }

  .page-payment-methods__steps-list li {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-payment-methods__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-payment-methods__accordion-content.active {
    padding: 15px 20px;
  }

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

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