.page-payment-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E5E5D1; /* Light color for text on dark background */
  background-color: #1A1A2E; /* Main dark background color */
}

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

.page-payment-methods__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5a 100%); /* Gradient based on main color */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-title {
  font-size: 3.2em;
  color: #E0B95B; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__hero-subtitle {
  font-size: 1.3em;
  color: #E5E5D1;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-payment-methods__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-payment-methods__btn--primary {
  background-color: #E0B95B; /* Accent color for primary button */
  color: #1A1A2E;
}

.page-payment-methods__btn--primary:hover {
  background-color: #F0D47C;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 185, 91, 0.4);
}

.page-payment-methods__btn--secondary {
  background-color: transparent;
  color: #E0B95B;
  border: 2px solid #E0B95B;
}

.page-payment-methods__btn--secondary:hover {
  background-color: #E0B95B;
  color: #1A1A2E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 185, 91, 0.4);
}

.page-payment-methods__overview,
.page-payment-methods__deposits,
.page-payment-methods__withdrawals,
.page-payment-methods__security,
.page-payment-methods__faq,
.page-payment-methods__cta-bottom {
  padding: 60px 0;
}

.page-payment-methods__overview {
  background-color: #24243D;
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #E0B95B;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-payment-methods__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B95B;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-payment-methods__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #CFCFCF;
}

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

.page-payment-methods__card {
  background-color: #1A1A2E;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a3a5a;
}

.page-payment-methods__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(224, 185, 91, 0.7));
}

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

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

.page-payment-methods__link-detail {
  color: #E0B95B;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.page-payment-methods__link-detail:hover {
  color: #F0D47C;
}

.page-payment-methods__arrow {
  margin-left: 8px;
  font-size: 1.2em;
}

.page-payment-methods__deposits, .page-payment-methods__withdrawals {
  background-color: #1A1A2E;
}

.page-payment-methods__list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #CFCFCF;
  font-size: 1.1em;
}

.page-payment-methods__list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-payment-methods__list li strong {
  color: #E0B95B;
}

.page-payment-methods__list li a {
  color: #E0B95B;
  text-decoration: none;
}

.page-payment-methods__list li a:hover {
  text-decoration: underline;
  color: #F0D47C;
}

.page-payment-methods__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__image--full-width {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__image--center {
  display: block;
  margin: 30px auto;
}

.page-payment-methods__security {
  background-color: #24243D;
}

.page-payment-methods__features-list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
  color: #CFCFCF;
  font-size: 1.1em;
}

.page-payment-methods__features-list li {
  background-color: #1A1A2E;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #E0B95B;
}

.page-payment-methods__features-list li strong {
  color: #E0B95B;
}

.page-payment-methods__faq {
  background-color: #1A1A2E;
}

.page-payment-methods__faq-item {
  background-color: #24243D;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a3a5a;
}

.page-payment-methods__faq-question {
  font-size: 1.4em;
  color: #E0B95B;
  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 {
  transform: rotate(45deg);
}

.page-payment-methods__faq-answer {
  font-size: 1.1em;
  color: #CFCFCF;
  line-height: 1.7;
  display: none;
  margin-top: 15px;
}

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

.page-payment-methods__cta-bottom {
  background: linear-gradient(135deg, #24243D 0%, #1A1A2E 100%);
  text-align: center;
  padding: 80px 0;
}

.page-payment-methods__cta-bottom .page-payment-methods__section-title {
  color: #E0B95B;
  margin-bottom: 20px;
}

.page-payment-methods__cta-bottom .page-payment-methods__text {
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #E5E5D1;
}

.page-payment-methods__text-small {
  font-size: 0.9em;
  color: #CFCFCF;
  margin-top: 20px;
}

.page-payment-methods__contact-link {
  color: #E0B95B;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods__contact-link:hover {
  text-decoration: underline;
  color: #F0D47C;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }

  .page-payment-methods__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-payment-methods__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 80%;
    margin: 0 auto;
  }

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

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

  .page-payment-methods__card {
    padding: 25px;
  }

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

  .page-payment-methods__list {
    margin-left: 15px;
  }

  .page-payment-methods__faq-question {
    font-size: 1.2em;
  }
}

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

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

  .page-payment-methods__btn {
    width: 90%;
  }

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

  .page-payment-methods__text,
  .page-payment-methods__list li,
  .page-payment-methods__card-description,
  .page-payment-methods__faq-answer {
    font-size: 0.95em;
  }

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