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

.page-payment-methods__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  box-sizing: border-box;
  overflow: hidden;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  background-color: rgba(17, 39, 27, 0.8); /* Card B G with transparency */
  border-radius: 10px;
  margin-top: 100px;
}

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

.page-payment-methods__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods__btn-primary,
.page-payment-methods__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-payment-methods__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-payment-methods__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-payment-methods__btn-secondary:hover {
  background: #2AD16F;
  color: #ffffff;
}

.page-payment-methods__section {
  padding: 80px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-payment-methods__section:last-of-type {
  border-bottom: none;
}

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

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

.page-payment-methods__section-intro {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__features-grid,
.page-payment-methods__method-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-payment-methods__feature-card,
.page-payment-methods__method-card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-payment-methods__feature-card:hover,
.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
}

.page-payment-methods__feature-icon,
.page-payment-methods__method-icon {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

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

.page-payment-methods__feature-description,
.page-payment-methods__method-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-payment-methods__step-card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-payment-methods__step-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-payment-methods__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

.page-payment-methods__tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-payment-methods__tip-item {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-payment-methods__tip-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-payment-methods__contact-btn {
  display: inline-block;
  margin-top: 10px;
}

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

.page-payment-methods__faq-item {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  list-style: none;
}

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

.page-payment-methods__faq-qtext {
  flex-grow: 1;
}

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

.page-payment-methods__faq-item[open] .page-payment-methods__faq-toggle {
  content: '−';
}

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-methods__hero-content {
    margin-top: 80px;
  }
  .page-payment-methods__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding-bottom: 40px;
  }
  .page-payment-methods__hero-image {
    position: relative;
    height: 300px; /* Adjust height for mobile hero */
    object-fit: cover;
    margin-bottom: 20px;
  }
  .page-payment-methods__hero-content {
    margin-top: 0;
    padding: 15px;
    max-width: 100%;
    background-color: #11271B; /* Solid background on mobile */
  }
  .page-payment-methods__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-payment-methods__description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }
  .page-payment-methods__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-payment-methods__section {
    padding: 40px 0;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-payment-methods__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-payment-methods__container {
    padding: 0 15px;
  }
  .page-payment-methods__features-grid,
  .page-payment-methods__method-list,
  .page-payment-methods__guide-steps,
  .page-payment-methods__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-payment-methods__feature-card,
  .page-payment-methods__method-card,
  .page-payment-methods__step-card,
  .page-payment-methods__tip-item {
    padding: 20px;
  }
  .page-payment-methods__feature-title,
  .page-payment-methods__method-title,
  .page-payment-methods__step-title,
  .page-payment-methods__tip-title {
    font-size: 1.2em;
  }
  .page-payment-methods__feature-description,
  .page-payment-methods__method-description,
  .page-payment-methods__step-description,
  .page-payment-methods__tip-description {
    font-size: 0.9em;
  }
  .page-payment-methods__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-payment-methods__faq-answer {
    padding: 0 20px 15px;
  }

  /* Ensure all images are responsive */
  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Image containers */
  .page-payment-methods__section,
  .page-payment-methods__card,
  .page-payment-methods__container,
  .page-payment-methods__feature-card,
  .page-payment-methods__method-card,
  .page-payment-methods__step-card,
  .page-payment-methods__tip-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Specific padding for content containers on mobile */
  .page-payment-methods__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Ensure buttons are responsive */
  .page-payment-methods__cta-bottom {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods__cta-bottom .page-payment-methods__btn-primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-image {
    height: 250px;
  }
  .page-payment-methods__hero-content {
    padding: 10px;
  }
  .page-payment-methods__main-title {
    font-size: 1.5em;
  }
  .page-payment-methods__description {
    font-size: 0.9em;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__section-intro {
    font-size: 0.85em;
  }
  .page-payment-methods__faq-question {
    font-size: 1em;
  }
}