.page-payment-methods {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

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

/* Fixed navigation bar spacing */
.page-payment-methods__intro-section {
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.8), rgba(255, 193, 7, 0.2)), url('[GALLERY:bg:payment methods,secure transactions,abstract]') center/cover no-repeat;
  text-align: center;
  position: relative;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-payment-methods__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.8;
}

.page-payment-methods__intro-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-payment-methods__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ffc107, #ffa000); /* Auxiliary color */
  color: #000000; /* Dark text for light background */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  border: none;
}

.page-payment-methods__cta-button:hover {
  background: linear-gradient(135deg, #ffa000, #ff8c00);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-payment-methods__cta-button--bottom {
  margin-top: 50px;
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #ffc107; /* Auxiliary color for titles */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
}

.page-payment-methods__deposit-methods-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__factors-section,
.page-payment-methods__tips-section,
.page-payment-methods__faq-section {
  padding: 60px 0;
  background-color: #0a0a0a; /* Consistent with body */
}

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

.page-payment-methods__method-card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-payment-methods__method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__method-icon {
  width: 150px; /* Increased size for icons */
  height: auto;
  margin-bottom: 25px;
  object-fit: contain;
  max-width: 100%;
}

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

.page-payment-methods__method-text {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-payment-methods__factor-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-payment-methods__factor-item {
  background: rgba(0, 86, 179, 0.2); /* Main color with transparency */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #ffc107;
  color: #f0f0f0;
}

.page-payment-methods__factor-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffc107;
}

.page-payment-methods__factor-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-payment-methods__security-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-payment-methods__tip-item {
  background: rgba(255, 255, 255, 0.05); /* Lighter background for tips */
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #0056b3;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-payment-methods__highlight {
  color: #ffc107;
  font-weight: bold;
}

.page-payment-methods__link {
  color: #00aaff; /* Standard link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-payment-methods__link:hover {
  color: #0077cc;
  text-decoration: underline;
}

/* FAQ Section Styles */
.page-payment-methods__faq-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.page-payment-methods__faq-list {
  margin-top: 40px;
}

.page-payment-methods__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter for FAQ items */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-payment-methods__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(0, 86, 179, 0.1); /* Main color with transparency for active answer */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 5px 5px;
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08); /* Slightly lighter for question background */
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #f0f0f0;
}

.page-payment-methods__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-payment-methods__faq-question:active {
  background: rgba(255, 255, 255, 0.15);
}

.page-payment-methods__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffc107; /* Auxiliary color for FAQ questions */
}

.page-payment-methods__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #ffc107;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods__main-title {
    font-size: 2.8em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__method-title {
    font-size: 1.4em;
  }
  .page-payment-methods__factor-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__intro-section {
    padding-top: 160px !important; /* Mobile: Adjust based on mobile fixed header height */
    padding-bottom: 40px;
  }
  .page-payment-methods__container {
    padding: 0 15px;
  }
  .page-payment-methods__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-payment-methods__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-payment-methods__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-payment-methods__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-payment-methods__deposit-methods-section,
  .page-payment-methods__withdrawal-section,
  .page-payment-methods__factors-section,
  .page-payment-methods__tips-section,
  .page-payment-methods__faq-section {
    padding: 40px 0;
  }
  .page-payment-methods__method-card {
    padding: 20px;
  }
  .page-payment-methods__method-icon {
    width: 120px;
    margin-bottom: 20px;
  }
  .page-payment-methods__method-title {
    font-size: 1.3em;
  }
  .page-payment-methods__factor-item {
    padding: 20px;
  }
  .page-payment-methods__factor-title {
    font-size: 1.2em;
  }
  .page-payment-methods__tip-item {
    font-size: 0.95em;
  }
  .page-payment-methods__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-payment-methods__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-payment-methods__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-payment-methods__faq-answer {
    padding: 0 15px;
  }
  .page-payment-methods__faq-item.active .page-payment-methods__faq-answer {
    padding: 15px !important;
  }

  /* Image responsiveness */
  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-payment-methods__intro-section,
  .page-payment-methods__deposit-methods-section,
  .page-payment-methods__withdrawal-section,
  .page-payment-methods__factors-section,
  .page-payment-methods__tips-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__container,
  .page-payment-methods__method-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-payment-methods__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}