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

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

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

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

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

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

.page-payment-methods__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-payment-methods__hero-description {
  font-size: 1.15rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-payment-methods__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-payment-methods__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-payment-methods__text-block {
  font-size: 1.05rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  object-fit: cover;
}

.page-payment-methods__methods-section,
.page-payment-methods__process-section,
.page-payment-methods__security-section,
.page-payment-methods__fees-limits-section,
.page-payment-methods__support-section,
.page-payment-methods__faq-section,
.page-payment-methods__cta-section {
  padding: 60px 0;
}

.page-payment-methods__method-card,
.page-payment-methods__step-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__card-title,
.page-payment-methods__step-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-payment-methods__card-description,
.page-payment-methods__step-description {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 15px;
  text-align: justify;
}

.page-payment-methods__card-list {
  list-style-type: disc;
  margin-left: 20px;
  color: #A7D9B8;
}

.page-payment-methods__card-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.page-payment-methods__card-list li strong {
  color: #F2FFF6;
}

.page-payment-methods__security-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.page-payment-methods__security-list li {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #A7D9B8;
  display: flex;
  align-items: flex-start;
}

.page-payment-methods__security-list li strong {
  color: #F2FFF6;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-payment-methods__table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
}

.page-payment-methods__transaction-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.page-payment-methods__transaction-table th,
.page-payment-methods__transaction-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #2E7A4E;
  color: #A7D9B8;
}

.page-payment-methods__transaction-table th {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  font-weight: 600;
  text-transform: uppercase;
}

.page-payment-methods__transaction-table tbody tr:nth-child(odd) {
  background-color: #11271B;
}

.page-payment-methods__transaction-table tbody tr:nth-child(even) {
  background-color: #08160F;
}

.page-payment-methods__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: #2AD16F;
  text-decoration: none;
  border: 2px solid #2AD16F;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

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

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

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

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-payment-methods__faq-question:hover {
  background-color: #13994A;
}

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

.page-payment-methods__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

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

.page-payment-methods__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  background-color: #11271B;
  border-top: 1px solid #2E7A4E;
}

.page-payment-methods__cta-section .page-payment-methods__container {
  text-align: center;
  padding: 60px 40px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.page-payment-methods__cta-section .page-payment-methods__section-title,
.page-payment-methods__cta-section .page-payment-methods__text-block {
  color: #F2FFF6;
}

.page-payment-methods__cta-section .page-payment-methods__image-content {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 300px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
  border-radius: 0;
  margin: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-payment-methods__hero-section {
    padding: 40px 15px;
  }

  .page-payment-methods__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

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

  .page-payment-methods__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .page-payment-methods__method-card,
  .page-payment-methods__step-card {
    padding: 25px;
  }

  .page-payment-methods__card-title,
  .page-payment-methods__step-title {
    font-size: 1.6rem;
  }

  .page-payment-methods__transaction-table {
    min-width: 600px;
  }

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

  .page-payment-methods__faq-answer {
    padding: 12px 20px;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding: 20px 15px;
    padding-top: 10px !important;
  }

  .page-payment-methods__hero-image-wrapper {
    margin-bottom: 20px;
  }

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

  .page-payment-methods__hero-description {
    font-size: 0.95rem;
  }

  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
  }

  .page-payment-methods__container,
  .page-payment-methods__method-card,
  .page-payment-methods__step-card,
  .page-payment-methods__faq-item,
  .page-payment-methods__cta-section .page-payment-methods__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-payment-methods__text-block {
    font-size: 0.95rem;
  }

  .page-payment-methods__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 30px auto;
  }

  .page-payment-methods__security-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .page-payment-methods__security-list li strong {
    margin-bottom: 5px;
  }

  .page-payment-methods__transaction-table {
    min-width: 500px;
  }

  .page-payment-methods__transaction-table th,
  .page-payment-methods__transaction-table td {
    padding: 10px;
    font-size: 0.85rem;
  }

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

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

  .page-payment-methods__faq-answer {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .page-payment-methods__cta-section .page-payment-methods__image-content {
    position: static;
    width: 100%;
    opacity: 0.1;
    margin-top: 20px;
  }
}