.page-payment-methods {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-payment-methods__hero-section {
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  text-align: center;
  background-color: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-payment-methods__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure images are not too small */
}

.page-payment-methods__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-payment-methods__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Glow */
  font-size: clamp(1.75rem, 5vw, 2rem);
}

.page-payment-methods__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 246, 214, 0.8);
}

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

.page-payment-methods__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: #111111; /* Dark text for bright button */
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4); /* Glow effect */
  min-width: 150px;
}

.page-payment-methods__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
  opacity: 0.9;
}

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

.page-payment-methods__section-title {
  font-size: 2rem;
  color: #FFF6D6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-payment-methods__text-content {
  font-size: 1rem;
  color: rgba(255, 246, 214, 0.8);
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods__intro-section, .page-payment-methods__deposit-methods, .page-payment-methods__withdrawal-methods, .page-payment-methods__security-section, .page-payment-methods__faq-section, .page-payment-methods__cta-section--bottom {
  padding: 40px 0;
  background-color: #0A0A0A;
}

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

.page-payment-methods__method-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-payment-methods__method-icon {
  width: 100%;
  height: auto;
  max-width: 300px;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__method-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Primary color */
  margin-bottom: 10px;
}

.page-payment-methods__method-description {
  font-size: 0.95rem;
  color: rgba(255, 246, 214, 0.7);
  margin-bottom: 20px;
}

.page-payment-methods__btn--deposit, .page-payment-methods__btn--withdraw {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-payment-methods__security-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-payment-methods__security-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  border: 1px solid #3A2A12;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__security-text {
  text-align: left;
}

.page-payment-methods__btn--learn-more {
  background: #F2C14E; /* Primary color */
  color: #111111; /* Dark text */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
  margin-top: 15px;
}

.page-payment-methods__btn--learn-more:hover {
  background: #FFD36B; /* Auxiliary color */
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

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

.page-payment-methods__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-payment-methods__faq-question {
  font-size: 1.2rem;
  color: #F2C14E; /* Primary color */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px; /* Space for arrow */
}

.page-payment-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

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

.page-payment-methods__faq-answer {
  font-size: 0.95rem;
  color: rgba(255, 246, 214, 0.7);
  display: none; /* Hidden by default */
  padding-top: 10px;
}

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

.page-payment-methods__cta-section--bottom {
  text-align: center;
  padding-bottom: 60px;
}

.page-payment-methods__btn--register-large {
  padding: 15px 35px;
  font-size: 1.1rem;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .page-payment-methods__hero-section {
    padding-top: 20px;
  }

  .page-payment-methods__hero-content {
    padding: 30px 20px;
  }

  .page-payment-methods__main-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  }

  .page-payment-methods__description {
    font-size: 1.2rem;
  }

  .page-payment-methods__section-title {
    font-size: 2.5rem;
  }

  .page-payment-methods__security-content {
    flex-direction: row;
    text-align: left;
  }

  .page-payment-methods__security-image {
    flex-shrink: 0;
    width: 40%;
    max-width: 450px;
    margin-right: 30px;
  }

  .page-payment-methods__security-text {
    flex-grow: 1;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-image img,
  .page-payment-methods__method-icon,
  .page-payment-methods__security-image {
    max-width: 100%;
    height: auto;
    max-height: none; /* Reset max-height for mobile */
    min-width: 200px;
    min-height: 200px;
  }

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

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