.page-payment-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

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

.page-payment-methods__section {
  padding: 60px 0;
  text-align: center;
}

.page-payment-methods__section--overview {
  background-color: #140C0C;
}

.page-payment-methods__section--deposit,
.page-payment-methods__section--withdrawal {
  background-color: #140C0C;
}

.page-payment-methods__section--limits {
  background-color: #2A1212; /* Card B G */
  color: #FFF1E8;
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-payment-methods__description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF1E8;
}

/* HERO Section */
.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #140C0C;
}

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

.page-payment-methods__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-payment-methods__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-payment-methods__main-title {
  color: #F3C54D; /* Gold */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

.page-payment-methods__intro-text {
  font-size: 1.2em;
  color: #FFF1E8;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

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

.page-payment-methods__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  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, #D86A14 0%, #FFB04A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__cta-button--secondary {
  background: transparent;
  border: 2px solid #F3C54D; /* Gold */
  color: #F3C54D;
}

.page-payment-methods__cta-button--secondary:hover {
  background: #F3C54D;
  color: #140C0C;
}

.page-payment-methods__cta-button--small {
  padding: 10px 25px;
  font-size: 1em;
}

/* Features Grid */
.page-payment-methods__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-payment-methods__feature-card {
  background-color: #2A1212; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #FFF1E8;
}

.page-payment-methods__feature-title {
  font-size: 1.5em;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

/* Step-by-Step Guides */
.page-payment-methods__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-payment-methods__step-item {
  background-color: #2A1212; /* Card B G */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 60px;
  color: #FFF1E8;
}

.page-payment-methods__step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #C61F1F; /* Main Color */
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-payment-methods__step-title {
  font-size: 1.3em;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods__step-item a {
  color: #FFB04A;
  text-decoration: none;
}

.page-payment-methods__step-item a:hover {
  text-decoration: underline;
}

/* Info Grid (Limits & Fees) */
.page-payment-methods__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-payment-methods__info-card {
  background-color: #140C0C;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #6A1E1E; /* Border */
  text-align: left;
  color: #FFF1E8;
}

.page-payment-methods__info-title {
  font-size: 1.5em;
  color: #E53030; /* Auxiliary Color */
  margin-bottom: 15px;
  font-weight: bold;
}

/* Image Styling */
.page-payment-methods__image-wrapper {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-payment-methods__image-wrapper--small {
  max-width: 600px;
}

/* FAQ Section */
.page-payment-methods__faq-list {
  margin-top: 40px;
  text-align: left;
}

details.page-payment-methods__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* Card B G */
  color: #FFF1E8;
}

details.page-payment-methods__faq-item summary.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-payment-methods__faq-item summary.page-payment-methods__faq-question:hover {
  background: #3a1a1a;
}

.page-payment-methods__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold */
}

.page-payment-methods__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFF1E8;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-payment-methods__faq-item .page-payment-methods__faq-answer {
  padding: 0 20px 20px;
  background: #140C0C;
  border-radius: 0 0 5px 5px;
  color: #FFF1E8;
}

.page-payment-methods__faq-answer p {
  margin-bottom: 10px;
}

.page-payment-methods__faq-answer a {
  color: #FFB04A;
  text-decoration: none;
}

.page-payment-methods__faq-answer a:hover {
  text-decoration: underline;
}

.page-payment-methods__support-cta {
  margin-top: 40px;
  text-align: center;
}

.page-payment-methods__support-cta p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFF1E8;
}

/* Contact Support Section */
.page-payment-methods__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-payment-methods__contact-card {
  background-color: #2A1212; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #FFF1E8;
}

.page-payment-methods__contact-title {
  font-size: 1.4em;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-payment-methods__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-payment-methods__intro-text {
    font-size: 1em;
    max-width: 100%;
  }

  .page-payment-methods__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-payment-methods__section {
    padding: 40px 0;
  }

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

  .page-payment-methods__description {
    margin-bottom: 30px;
  }

  .page-payment-methods__features-grid,
  .page-payment-methods__step-by-step,
  .page-payment-methods__info-grid,
  .page-payment-methods__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods__feature-card,
  .page-payment-methods__step-item,
  .page-payment-methods__info-card,
  .page-payment-methods__contact-card {
    padding: 20px;
  }

  .page-payment-methods__feature-title,
  .page-payment-methods__step-title,
  .page-payment-methods__info-title,
  .page-payment-methods__contact-title {
    font-size: 1.2em;
  }

  .page-payment-methods__image-wrapper {
    margin: 30px auto;
  }

  .page-payment-methods__image-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-payment-methods__section,
  .page-payment-methods__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  details.page-payment-methods__faq-item summary.page-payment-methods__faq-question { padding: 15px; }
  .page-payment-methods__faq-qtext { font-size: 1em; }
}