/* style/payment-methods.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-dark: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-payment-methods {
  background-color: var(--background-dark);
  color: var(--text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* body handles padding-top, this is for internal spacing */
  background-color: var(--background-dark);
  overflow: hidden;
}

.page-payment-methods__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-payment-methods__hero-content {
  max-width: 900px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.page-payment-methods__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-payment-methods__hero-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

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

.page-payment-methods__btn-primary,
.page-payment-methods__btn-secondary {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-payment-methods__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid var(--glow-color);
}

.page-payment-methods__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
}

.page-payment-methods__btn-secondary {
  background: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-payment-methods__btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(87, 227, 141, 0.1);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.2);
}

.page-payment-methods__section {
  padding: 60px 20px;
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--divider-color);
}

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

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

.page-payment-methods__section-title {
  font-size: 2.2em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-payment-methods__text-block {
  font-size: 1.05em;
  color: var(--text-secondary);
  text-align: justify;
  margin-bottom: 30px;
}

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

.page-payment-methods__feature-card,
.page-payment-methods__method-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-payment-methods__feature-card:hover,
.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(87, 227, 141, 0.3);
}

.page-payment-methods__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__card-description {
  color: var(--text-secondary);
  font-size: 0.95em;
}

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

.page-payment-methods__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 40px auto;
  object-fit: cover;
  max-width: 800px; /* Example content image size */
}

.page-payment-methods__sub-title {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-payment-methods__step-list {
  list-style-type: decimal;
  color: var(--text-secondary);
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-payment-methods__step-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.5;
}

.page-payment-methods__step-list strong {
  color: var(--text-main);
}

.page-payment-methods__text-link {
  color: var(--glow-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-payment-methods__text-link:hover {
  color: var(--gold-color);
}

.page-payment-methods__bullet-list {
  list-style-type: disc;
  color: var(--text-secondary);
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-payment-methods__bullet-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.5;
}

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

.page-payment-methods__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  color: var(--text-main);
  font-weight: 600;
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--border-color);
}

.page-payment-methods__faq-item[open] > .page-payment-methods__faq-question {
  border-bottom: 1px solid var(--border-color);
}

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

.page-payment-methods__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  margin-left: 15px;
  color: var(--glow-color);
}

.page-payment-methods__faq-answer {
  padding: 20px 25px;
  color: var(--text-secondary);
  font-size: 1em;
  line-height: 1.6;
}

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

.page-payment-methods__faq-item summary {
  list-style: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-payment-methods__main-title {
    font-size: 2.4em;
  }

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

  .page-payment-methods__sub-title {
    font-size: 1.6em;
  }

  .page-payment-methods__hero-content {
    margin-top: 30px;
  }
}

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

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

  .page-payment-methods__hero-content {
    margin-top: 25px;
  }

  .page-payment-methods__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-payment-methods__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-payment-methods__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-payment-methods__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-payment-methods__text-block,
  .page-payment-methods__card-description,
  .page-payment-methods__step-list li,
  .page-payment-methods__bullet-list li,
  .page-payment-methods__faq-answer {
    font-size: 0.95em;
  }

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

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

  .page-payment-methods__image-full-width,
  .page-payment-methods__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
  }

  .page-payment-methods__sub-title {
    font-size: 1.4em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-payment-methods__step-list,
  .page-payment-methods__bullet-list {
    padding-left: 20px;
  }

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

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

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