/* style/payment-methods.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #1a1a1a;
  --border-color: #e0e0e0;
}

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

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

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-payment-methods__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-color-dark);
}

.page-payment-methods__sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.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: linear-gradient(135deg, var(--primary-color), #4CAF50);
  color: var(--text-color-light);
  border-radius: 0 0 15px 15px;
}

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

.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;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.page-payment-methods__hero-content h1 {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  margin-bottom: 20px;
  color: var(--text-color-light);
  font-weight: 700;
  line-height: 1.2;
}

.page-payment-methods__hero-content p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--text-color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__cta-button:hover {
  background: #ff8c00; /* Slightly darker orange */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Overview Section */
.page-payment-methods__overview-section {
  padding: 80px 0;
  background-color: var(--background-light);
  color: var(--text-color-dark);
}

.page-payment-methods__overview-section p {
  margin-bottom: 20px;
}

/* Deposit Methods Section */
.page-payment-methods__deposit-methods-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
}

.page-payment-methods__deposit-methods-section .page-payment-methods__section-title,
.page-payment-methods__deposit-methods-section .page-payment-methods__section-description {
  color: var(--text-color-light);
}

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

.page-payment-methods__method-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__method-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-payment-methods__method-title {
  font-size: 1.5em;
  color: var(--text-color-light);
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.page-payment-methods__method-card p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-payment-methods__method-list {
  list-style: disc inside;
  padding-left: 0;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.page-payment-methods__method-list li {
  margin-bottom: 8px;
}

.page-payment-methods__note {
  margin-top: 40px;
  font-size: 0.95em;
  opacity: 0.9;
}

/* Withdrawal Section */
.page-payment-methods__withdrawal-section {
  padding: 80px 0;
  background-color: var(--background-light);
  color: var(--text-color-dark);
}

.page-payment-methods__content-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

.page-payment-methods__text-content {
  flex: 1;
}

.page-payment-methods__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-payment-methods__image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-payment-methods__step-list {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
}

.page-payment-methods__step-list li {
  counter-increment: step-counter;
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  font-size: 1.1em;
}

.page-payment-methods__step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary-color);
  color: var(--text-color-light);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-payment-methods__note-list {
  list-style: disc inside;
  padding-left: 20px;
  margin-top: 20px;
  font-size: 1em;
}

/* Security Section */
.page-payment-methods__security-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-color-light);
  text-align: center;
}

.page-payment-methods__security-section .page-payment-methods__section-title,
.page-payment-methods__security-section .page-payment-methods__section-description {
  color: var(--text-color-light);
}

.page-payment-methods__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-payment-methods__feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-payment-methods__feature-item img {
  width: 100%;
  
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-payment-methods__feature-item h3 {
  font-size: 1.4em;
  color: var(--text-color-light);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__feature-item p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
}

.page-payment-methods__callout {
  margin-top: 50px;
  font-size: 1.1em;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* Tips Section */
.page-payment-methods__tips-section {
  padding: 80px 0;
  background-color: var(--background-light);
  color: var(--text-color-dark);
}

.page-payment-methods__tips-list {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
}

.page-payment-methods__tips-list li {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__tips-list li::before {
  content: '✔️';
  margin-right: 15px;
  font-size: 1.2em;
  color: var(--primary-color);
}

/* Promotions Section */
.page-payment-methods__promotions-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
}

.page-payment-methods__promotions-section .page-payment-methods__section-title,
.page-payment-methods__promotions-section .page-payment-methods__section-description {
  color: var(--text-color-light);
}

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

.page-payment-methods__promo-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__promo-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-payment-methods__promo-card h3 {
  font-size: 1.4em;
  color: var(--text-color-light);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__promo-card p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-payment-methods__promo-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-payment-methods__promo-button:hover {
  background: #ff8c00;
}

.page-payment-methods__cta-text {
  margin-top: 50px;
  font-size: 1.1em;
  color: var(--text-color-light);
}

.page-payment-methods__cta-text a {
  color: var(--text-color-light);
  text-decoration: underline;
  font-weight: bold;
}

.page-payment-methods__cta-text a:hover {
  color: #ff8c00;
}

/* Support Section */
.page-payment-methods__support-section {
  padding: 80px 0;
  background-color: var(--background-light);
  color: var(--text-color-dark);
  text-align: center;
}

.page-payment-methods__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-payment-methods__channel-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods__channel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__channel-item img {
  width: 100%;
  
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-payment-methods__channel-item h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__channel-item p {
  font-size: 1em;
  color: var(--text-color-dark);
}

.page-payment-methods__contact-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 50px;
  transition: background 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__contact-button:hover {
  background: #1e88e5;
}

/* FAQ Section */
.page-payment-methods__faq-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-color-light);
  text-align: center;
}

.page-payment-methods__faq-section .page-payment-methods__section-title {
  color: var(--text-color-light);
}

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

details.page-payment-methods__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

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;
  color: var(--text-color-light);
}

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: rgba(255, 255, 255, 0.1);
}

.page-payment-methods__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-color-light);
}

.page-payment-methods__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  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: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 5px 5px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1em;
}

/* General image styling for responsiveness */
.page-payment-methods img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-content h1 {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-payment-methods__hero-content p {
    font-size: 1.1em;
  }
  .page-payment-methods__hero-image img {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 0;
  }
  .page-payment-methods__hero-image {
    margin-bottom: 20px;
  }
  .page-payment-methods__hero-image img {
    border-radius: 4px;
  }
  .page-payment-methods__hero-content h1 {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }
  .page-payment-methods__hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-payment-methods__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    margin-top: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-payment-methods__container {
    padding: 15px;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-payment-methods__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-payment-methods__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
  }
  .page-payment-methods__deposit-methods-section,
  .page-payment-methods__withdrawal-section,
  .page-payment-methods__security-section,
  .page-payment-methods__tips-section,
  .page-payment-methods__promotions-section,
  .page-payment-methods__support-section,
  .page-payment-methods__faq-section {
    padding: 40px 0;
  }

  .page-payment-methods__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-payment-methods__image-wrapper img {
    max-width: 100%;
  }
  .page-payment-methods__methods-grid,
  .page-payment-methods__security-features,
  .page-payment-methods__promo-grid,
  .page-payment-methods__support-channels {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__method-card,
  .page-payment-methods__feature-item,
  .page-payment-methods__promo-card,
  .page-payment-methods__channel-item {
    padding: 20px;
  }
  .page-payment-methods__method-card img,
  .page-payment-methods__feature-item img,
  .page-payment-methods__promo-card img,
  .page-payment-methods__channel-item img {
    
  }
  .page-payment-methods__method-title,
  .page-payment-methods__feature-item h3,
  .page-payment-methods__promo-card h3,
  .page-payment-methods__channel-item h3 {
    font-size: 1.2em;
  }
  .page-payment-methods__tips-list li {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-payment-methods__faq-qtext {
    font-size: 1em;
  }
  details.page-payment-methods__faq-item summary.page-payment-methods__faq-question {
    padding: 15px;
  }
  .page-payment-methods__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-payment-methods__faq-item .page-payment-methods__faq-answer {
    padding: 0 15px 15px;
  }

  /* Mobile button adaptations */
  .page-payment-methods__promo-button,
  .page-payment-methods__contact-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-payment-methods__contact-button {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__hero-content h1 {
    font-size: clamp(1.4em, 7vw, 2em);
  }
  .page-payment-methods__hero-content p {
    font-size: 0.9em;
  }
}