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

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

/* Hero Section */
.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
  overflow: hidden;
}

.page-payment-methods__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for 16:9 aspect ratio */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Enforce min size */
}

.page-payment-methods__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
  position: relative;
  text-align: center;
}

.page-payment-methods__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-payment-methods__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-payment-methods__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-payment-methods__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25rem;
  margin-top: 30px;
}

/* General Section Styling */
.page-payment-methods__intro-section,
.page-payment-methods__deposit-methods,
.page-payment-methods__how-to-deposit,
.page-payment-methods__withdrawal-methods,
.page-payment-methods__how-to-withdraw,
.page-payment-methods__security-policy,
.page-payment-methods__faq-section,
.page-payment-methods__important-notes,
.page-payment-methods__conclusion-cta {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-payment-methods__intro-section {
  background-color: #0A4B2C; /* Deep Green */
  padding-top: 40px;
  border-bottom: none;
}

.page-payment-methods__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-payment-methods__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

/* Method Cards */
.page-payment-methods__method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-payment-methods__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 450px; /* Ensure cards have consistent height */
}

.page-payment-methods__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-payment-methods__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  border: 2px solid #2AD16F;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  margin-top: auto; /* Push button to bottom */
}

.page-payment-methods__btn-secondary:hover {
  background-color: #11A84E; /* Main Color */
  border-color: #57E38D; /* Glow */
}

/* Numbered List (How-to guides) */
.page-payment-methods__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-left: 20px;
}

.page-payment-methods__numbered-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-payment-methods__numbered-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2AD16F; /* Bright green from Button gradient */
  color: #08160F; /* Background */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-payment-methods__numbered-list strong {
  color: #F2FFF6; /* Text Main */
}

.page-payment-methods__numbered-list a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-payment-methods__numbered-list a:hover {
  text-decoration: underline;
}

/* Bullet List */
.page-payment-methods__bullet-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-payment-methods__bullet-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-payment-methods__bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #2AD16F; /* Bright green */
  font-size: 1.5rem;
  line-height: 1;
}

.page-payment-methods__bullet-list strong {
  color: #F2FFF6; /* Text Main */
}

/* FAQ Section */
.page-payment-methods__faq-list {
  margin-top: 30px;
}

.page-payment-methods__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-payment-methods__faq-question::-webkit-details-marker {
  display: none;
}

.page-payment-methods__faq-question:hover {
  background-color: #1E3A2A; /* Divider - slightly darker */
}

.page-payment-methods__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F; /* Bright green */
  margin-left: 15px;
}

.page-payment-methods__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-payment-methods__faq-answer p {
  margin: 0;
}

/* Conclusion CTA */
.page-payment-methods__conclusion-cta {
  text-align: center;
  padding-bottom: 80px;
  border-bottom: none;
}

.page-payment-methods__conclusion-cta .page-payment-methods__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__conclusion-cta a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-payment-methods__conclusion-cta a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-payment-methods {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-payment-methods__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-payment-methods__hero-section {
    padding: 10px 0 40px 0;
  }

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

  .page-payment-methods__main-title {
    font-size: 2.2rem;
  }

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

  .page-payment-methods__cta-button,
  .page-payment-methods__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    margin-top: 20px;
  }

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

  .page-payment-methods__method-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods__card {
    min-height: auto;
    padding: 20px;
  }

  .page-payment-methods__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
  }

  .page-payment-methods__card-title {
    font-size: 1.3rem;
  }

  .page-payment-methods__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .page-payment-methods__numbered-list,
  .page-payment-methods__bullet-list {
    margin-left: 0;
  }

  .page-payment-methods__numbered-list li,
  .page-payment-methods__bullet-list li {
    padding-left: 35px;
  }

  .page-payment-methods__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-payment-methods__faq-answer {
    padding: 0 15px 15px 15px;
  }

  .page-payment-methods img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-payment-methods__section,
  .page-payment-methods__card,
  .page-payment-methods__container,
  .page-payment-methods__method-cards,
  .page-payment-methods__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
}

/* Ensure all images within content area are responsive and meet minimum size */
.page-payment-methods img {
  max-width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

/* Override specific element min-size if needed for layout, but generally avoid */
.page-payment-methods__card-image {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure contrast for text on various backgrounds */
.page-payment-methods p, .page-payment-methods li, .page-payment-methods span {
  color: #A7D9B8; /* Default text color for body, cards, etc. */
}

.page-payment-methods h1, .page-payment-methods h2, .page-payment-methods h3, .page-payment-methods h4, .page-payment-methods h5, .page-payment-methods h6 {
  color: #F2FFF6; /* Default heading color */
}

.page-payment-methods__main-title {
  color: #F2C14E; /* Gold for main title */
}

.page-payment-methods__section-title {
  color: #F2C14E; /* Gold for section titles */
}

.page-payment-methods__card-title {
  color: #F2FFF6; /* Text Main for card titles */
}

.page-payment-methods__faq-question {
  color: #F2FFF6; /* Text Main for FAQ questions */
}

.page-payment-methods__cta-button, .page-payment-methods__btn-secondary {
  color: #F2FFF6; /* Text Main for button text */
}

.page-payment-methods__cta-button {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-payment-methods__btn-secondary {
  background: #0A4B2C;
  border-color: #2AD16F;
}

.page-payment-methods a {
  color: #57E38D; /* Glow for links */
}

.page-payment-methods__faq-toggle {
  color: #2AD16F; /* Bright green for toggle icon */
}