/* style/payment-methods.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-button-color: #EA7C07;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #26A9E0;
}

.page-payment-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default to dark text for light body background */
  background-color: var(--background-light);
}

.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  color: var(--text-light);
  overflow: hidden;
}

.page-payment-methods__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-payment-methods__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-payment-methods__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

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

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

.page-payment-methods__main-title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-payment-methods__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__btn-primary {
  display: inline-block;
  background-color: var(--login-button-color);
  color: var(--secondary-color);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.page-payment-methods__btn-primary:hover {
  background-color: #d46b00;
}

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

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

.page-payment-methods__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-payment-methods__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods__method-card {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

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

.page-payment-methods__method-icon {
  width: 100%;
  height: auto;
  max-width: 250px; /* Adjusted for better visual */
  min-width: 200px;
  min-height: 150px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__method-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

.page-payment-methods__method-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

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

.page-payment-methods__method-features li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-payment-methods__withdrawal-steps {
  flex: 2;
}

.page-payment-methods__withdrawal-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-payment-methods__withdrawal-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  min-width: 200px;
  min-height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

.page-payment-methods__sub-title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-payment-methods__withdrawal-steps p,
.page-payment-methods__important-notes li {
  color: var(--text-light);
}

.page-payment-methods__step-list {
  list-style-type: decimal;
  margin-left: 20px;
  color: var(--text-light);
}

.page-payment-methods__step-list li {
  margin-bottom: 10px;
}

.page-payment-methods__important-notes {
  list-style: none;
  padding: 0;
}

.page-payment-methods__important-notes li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-payment-methods__important-notes li::before {
  content: '🚨';
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-payment-methods__security-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
}

.page-payment-methods__security-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 50%;
  padding: 5px;
  background-color: var(--primary-color);
}

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

.page-payment-methods__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

.page-payment-methods__faq-item[open] > .page-payment-methods__faq-question {
  border-bottom: 1px solid #e0e0e0;
}

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

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

.page-payment-methods__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary-color);
}

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-methods__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }
  .page-payment-methods__section-title {
    font-size: 2rem;
  }
  .page-payment-methods__method-card {
    padding: 20px;
  }
  .page-payment-methods__method-title {
    font-size: 1.5rem;
  }
  .page-payment-methods__withdrawal-content {
    flex-direction: column;
    align-items: center;
  }
  .page-payment-methods__withdrawal-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-payment-methods__withdrawal-image {
    max-width: 400px;
  }
  .page-payment-methods__security-features li {
    flex-direction: column;
    text-align: center;
  }
  .page-payment-methods__security-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .page-payment-methods {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-payment-methods__hero-section {
    padding: 10px 15px 40px;
  }
  .page-payment-methods__hero-image-wrapper {
    margin-bottom: 15px;
  }
  .page-payment-methods__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 150px !important;
  }
  .page-payment-methods__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-payment-methods__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-payment-methods__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }
  .page-payment-methods__section {
    padding: 40px 15px;
  }
  .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: 1.8rem;
    margin-bottom: 15px;
  }
  .page-payment-methods__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-payment-methods__method-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__method-card {
    padding: 15px;
  }
  .page-payment-methods__method-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 150px !important;
  }
  .page-payment-methods__method-title {
    font-size: 1.3rem;
  }
  .page-payment-methods__sub-title {
    font-size: 1.6rem;
  }
  .page-payment-methods__withdrawal-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 150px !important;
  }
  .page-payment-methods__security-features li {
    font-size: 0.95rem;
    padding: 15px;
  }
  .page-payment-methods__security-icon {
    width: 50px;
    height: 50px;
    min-width: 50px !important;
    min-height: 50px !important;
  }
  .page-payment-methods__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-payment-methods__faq-answer {
    padding: 15px 20px;
  }
  /* Ensure all content images meet min size requirements */
  .page-payment-methods img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-
  }
  .page-payment-methods__section,
  .page-payment-methods__card,
  .page-payment-methods__container,
  .page-payment-methods__hero-section,
  .page-payment-methods__method-card,
  .page-payment-methods__withdrawal-content,
  .page-payment-methods__security-features,
  .page-payment-methods__faq-item,
  .page-payment-methods__conclusion-section,
  .page-payment-methods__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
  .page-payment-methods__hero-content {
    padding-left: 0;
    padding-right: 0;
  }
  .page-payment-methods__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .page-payment-methods__security-features {
    padding-left: 0;
    padding-right: 0;
  }
  .page-payment-methods__security-features li {
    padding-left: 15px;
    padding-right: 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;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods__cta-buttons,
  .page-payment-methods__button-group,
  .page-payment-methods__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}