.page-payment-methods {
  /* Assuming body has a dark background like #08160F from shared.css */
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #08160F; /* Background */
}

.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 as body handles --header-offset */
  overflow: hidden;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
  color: #F2FFF6;
}

.page-payment-methods__hero-image {
  width: 100%;
  max-width: 1920px; /* Match hero image width */
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-payment-methods__hero-content {
  max-width: 900px;
  z-index: 1;
}

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

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

.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 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-payment-methods__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6); /* Glow */
}

.page-payment-methods__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-payment-methods__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6;
}

.page-payment-methods__section {
  padding: 80px 20px;
}

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

.page-payment-methods__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6;
}

.page-payment-methods__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #A7D9B8;
}

.page-payment-methods__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-payment-methods__light-bg {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
}

.page-payment-methods__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #57E38D; /* Glow */
}

.page-payment-methods__why-choose .page-payment-methods__section-title,
.page-payment-methods__why-choose .page-payment-methods__section-description {
  color: #F2FFF6;
}

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

.page-payment-methods__feature-item {
  padding: 30px;
  border-radius: 12px;
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.page-payment-methods__feature-item p {
  color: #A7D9B8; /* Text Secondary */
}

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

.page-payment-methods__method-card {
  padding: 30px;
  border-radius: 12px;
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-payment-methods__method-image {
  width: 100%;
  max-width: 400px; /* Recommended content image size */
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-payment-methods__method-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-payment-methods__method-card p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-payment-methods__method-steps {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-payment-methods__method-steps li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-payment-methods__method-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Green from Button gradient */
  font-weight: bold;
}

.page-payment-methods__min-max {
  font-size: 0.9em;
  font-style: italic;
  color: #A7D9B8; /* Text Secondary */
  margin-top: auto; /* Push to bottom */
}

.page-payment-methods__withdrawal-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-payment-methods__withdrawal-info {
  flex: 1;
  min-width: 300px;
}

.page-payment-methods__withdrawal-image {
  flex: 1;
  min-width: 300px;
  width: 100%;
  max-width: 600px; /* Recommended content image size */
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__info-list,
.page-payment-methods__ordered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #F2FFF6;
}

.page-payment-methods__info-list li,
.page-payment-methods__ordered-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-payment-methods__info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F2C14E; /* Gold */
  font-weight: bold;
  font-size: 1.2em;
  top: -2px;
}

.page-payment-methods__ordered-list li::before {
  content: counter(list-item) '.';
  counter-increment: list-item;
  position: absolute;
  left: 0;
  color: #2AD16F; /* Green from Button gradient */
  font-weight: bold;
  font-size: 1.1em;
}

.page-payment-methods__important-notes .page-payment-methods__notes-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-payment-methods__important-notes .page-payment-methods__notes-list li {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 60px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__important-notes .page-payment-methods__notes-list li strong {
  color: #F2C14E; /* Gold */
}

.page-payment-methods__important-notes .page-payment-methods__notes-list li::before {
  content: '⚠️';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-payment-methods__faq-section .page-payment-methods__section-title,
.page-payment-methods__faq-section .page-payment-methods__section-description {
  color: #F2FFF6;
}

.page-payment-methods__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1em;
  color: #F2FFF6;
  position: relative;
}

.page-payment-methods__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-payment-methods__faq-qtext {
  color: #F2C14E; /* Gold */
}

.page-payment-methods__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-item[open] .page-payment-methods__faq-toggle {
  transform: rotate(45deg);
}

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

.page-payment-methods__faq-image {
  width: 100%;
  max-width: 800px; /* Recommended content image size */
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__conclusion .page-payment-methods__section-title,
.page-payment-methods__conclusion .page-payment-methods__section-description {
  color: #F2FFF6;
}

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

  .page-payment-methods__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-payment-methods__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-payment-methods__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-payment-methods__cta-button,
  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary,
  .page-payment-methods a[class*="button"],
  .page-payment-methods a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

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

  .page-payment-methods__section-title {
    font-size: clamp(1.6em, 7vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-payment-methods__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-payment-methods__feature-item,
  .page-payment-methods__method-card {
    padding: 20px;
  }

  .page-payment-methods__feature-title,
  .page-payment-methods__method-title {
    font-size: 1.3em;
  }

  .page-payment-methods__method-steps,
  .page-payment-methods__info-list,
  .page-payment-methods__ordered-list {
    max-width: 100%;
  }

  .page-payment-methods__withdrawal-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-payment-methods__withdrawal-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-payment-methods__important-notes .page-payment-methods__notes-list li {
    padding: 15px;
    padding-left: 50px;
  }

  .page-payment-methods__important-notes .page-payment-methods__notes-list li::before {
    left: 15px;
    font-size: 1.2em;
  }

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

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

  .page-payment-methods__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.9em;
  }

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

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

  .page-payment-methods__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-payment-methods__faq-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}