.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A192F; /* Primary dark background */
}

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

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-payment-methods__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods__highlight {
  color: #FFD700;
}

/* Hero Section */
.page-payment-methods__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2A3B5B 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods__hero-content {
  z-index: 1;
  position: relative;
  margin-bottom: 40px;
}

.page-payment-methods__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.page-payment-methods__hero-description {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__hero-image {
  width: 100%;
  max-width: 800px; /* Adjust max-width as needed */
  margin-top: 40px;
}

.page-payment-methods__hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-payment-methods__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text for gold button */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

/* Introduction Section */
.page-payment-methods__introduction {
  padding: 60px 0;
  background-color: #1A2A47;
}

/* Deposit & Withdrawal Methods */
.page-payment-methods__deposit-methods,
.page-payment-methods__withdrawal-methods {
  padding: 60px 0;
  background-color: #0A192F;
}

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

.page-payment-methods__method-card {
  background-color: #1A2A47;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.page-payment-methods__method-icon {
  width: 150px; /* Increased size */
  height: auto;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: contain;
}

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

.page-payment-methods__method-description {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-payment-methods__method-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-payment-methods__method-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95em;
  color: #E0E0E0;
}

.page-payment-methods__method-features li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-payment-methods__method-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-payment-methods__method-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-payment-methods__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #AAAAAA;
}

.page-payment-methods__withdrawal-steps {
  list-style: decimal;
  padding-left: 25px;
  text-align: left;
  font-size: 1em;
  line-height: 1.8;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-payment-methods__withdrawal-steps li {
  margin-bottom: 10px;
}

/* Advantages Section */
.page-payment-methods__advantages {
  padding: 80px 0;
  background-color: #1A2A47;
}

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

.page-payment-methods__advantage-item {
  background-color: #0A192F;
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__advantage-icon {
  width: 120px; /* Increased size */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-payment-methods__advantage-description {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
}

/* FAQ Section */
.page-payment-methods__faq {
  padding: 60px 0;
  background-color: #0A192F;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #2A3B5B;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #1A2A47;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #2A3B5B;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #E0E0E0;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background-color: #0A192F;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height */
  padding: 20px 25px;
  border-top: 1px solid #2A3B5B;
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
}

/* Call to Action Section */
.page-payment-methods__call-to-action {
  background: linear-gradient(135deg, #2A3B5B 0%, #0A192F 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.page-payment-methods__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-payment-methods__cta-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-payment-methods__cta-button--large {
  padding: 18px 50px;
  font-size: 1.4em;
  border-radius: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods__hero-title {
    font-size: 3em;
  }
  .page-payment-methods__hero-description {
    font-size: 1.2em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-payment-methods__cta-title {
    font-size: 2.2em;
  }
  .page-payment-methods__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods__hero-container {
    flex-direction: column;
  }
  .page-payment-methods__hero-image {
    margin-top: 30px;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__paragraph {
    font-size: 1em;
  }
  .page-payment-methods__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__method-card {
    padding: 25px;
  }
  .page-payment-methods__method-icon {
    width: 100px;
  }
  .page-payment-methods__advantage-icon {
    width: 100px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 15px 20px;
  }
  .page-payment-methods__cta-title {
    font-size: 1.8em;
  }
  .page-payment-methods__cta-description {
    font-size: 1em;
  }
  .page-payment-methods__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-description {
    font-size: 0.95em;
  }
  .page-payment-methods__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__method-title {
    font-size: 1.5em;
  }
  .page-payment-methods__advantage-title {
    font-size: 1.4em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 1.3em;
  }
  .page-payment-methods__cta-title {
    font-size: 1.5em;
  }
  .page-payment-methods__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}