/* style/payment-methods.css */
.page-payment-methods {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f8f9fa; /* Light background for the page content */
}

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

.page-payment-methods__hero-section {
  background: linear-gradient(135deg, #007bff, #4da3ff); /* Primary blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

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

.page-payment-methods__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__btn--primary {
  background-color: #ffc107; /* Secondary gold */
  color: #0056b3; /* Darker blue for contrast */
  border: 2px solid #ffc107;
}

.page-payment-methods__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-payment-methods__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-payment-methods__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-payment-methods__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__section-title {
  font-size: 2.2em;
  color: #007bff; /* Primary blue */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-payment-methods__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

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

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

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

.page-payment-methods__method-icon,
.page-payment-methods__benefit-icon {
  width: 250px; /* Enlarge image size */
  height: 180px; /* Enlarge image size */
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-payment-methods__method-title,
.page-payment-methods__benefit-title {
  font-size: 1.6em;
  color: #0056b3; /* Darker blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__method-description,
.page-payment-methods__benefit-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-payment-methods__method-features,
.page-payment-methods__list,
.page-payment-methods__ordered-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-payment-methods__method-features li,
.page-payment-methods__list li,
.page-payment-methods__ordered-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #444;
}

.page-payment-methods__method-features li::before,
.page-payment-methods__list li::before {
  content: '✓';
  color: #ffc107; /* Secondary gold */
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-payment-methods__ordered-list li::before {
    counter-increment: list-counter;
    content: counter(list-counter) ". ";
    color: #007bff; /* Primary blue */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-payment-methods__withdrawal-methods {
  background-color: #e9f5ff; /* Lighter blue background */
}

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

.page-payment-methods__image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__image--left {
  order: 1;
}

.page-payment-methods__text-content {
  flex: 1;
  min-width: 400px;
}

.page-payment-methods__sub-title {
  font-size: 1.8em;
  color: #007bff; /* Primary blue */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-payment-methods__text {
  margin-bottom: 15px;
  color: #555;
}

.page-payment-methods__brand-name {
  color: #007bff;
  font-weight: bold;
}

.page-payment-methods__highlight {
  color: #ffc107;
  font-weight: bold;
}

.page-payment-methods__promotions {
  background-color: #f8f9fa;
}

.page-payment-methods__promo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.page-payment-methods__promo-image {
  width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__promo-text {
  flex: 1;
  min-width: 350px;
  max-width: 600px;
}

.page-payment-methods__faq {
  background-color: #ffffff;
}

.page-payment-methods__faq-item {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #0056b3; /* Darker blue */
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #555;
  display: none; /* Hidden by default, JS will toggle */
}

.page-payment-methods__faq-item--active .page-payment-methods__faq-answer {
  display: block;
}

.page-payment-methods__cta-section {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods__cta-content {
  max-width: 900px;
}

.page-payment-methods__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-payment-methods__btn--large {
  padding: 15px 40px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods__hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__sub-title {
    font-size: 1.5em;
  }
  .page-payment-methods__image,
  .page-payment-methods__promo-image {
    max-width: 100%;
  }
  .page-payment-methods__image--left {
    order: unset;
  }
  .page-payment-methods__text-content {
    min-width: unset;
  }
  .page-payment-methods__method-grid,
  .page-payment-methods__benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section,
  .page-payment-methods__cta-section {
    padding: 60px 0;
  }
  .page-payment-methods__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods__hero-description,
  .page-payment-methods__cta-description {
    font-size: 1em;
  }
  .page-payment-methods__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-payment-methods__section {
    padding: 40px 0;
  }
  .page-payment-methods__section-title {
    font-size: 1.6em;
  }
  .page-payment-methods__method-icon,
  .page-payment-methods__benefit-icon {
    width: 200px; /* Adjust image size for smaller screens */
    height: 150px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 1.5em;
  }
  .page-payment-methods__section-title {
    font-size: 1.4em;
  }
  .page-payment-methods__sub-title {
    font-size: 1.3em;
  }
  .page-payment-methods__faq-question {
    font-size: 1.1em;
  }
  .page-payment-methods__btn {
    width: 90%;
  }
}