.page-payment-methods-e-wallets {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7f6;
}

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

.page-payment-methods-e-wallets__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #304a80 100%); /* Deeper blue to slightly lighter blue */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods-e-wallets__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-payment-methods-e-wallets__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B94A; /* Gold for emphasis */
  position: relative;
  z-index: 1;
}

.page-payment-methods-e-wallets__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-payment-methods-e-wallets__cta-button {
  display: inline-block;
  background-color: #E0B94A;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
  border: 2px solid #E0B94A;
}

.page-payment-methods-e-wallets__cta-button:hover {
  background-color: #f0c95a;
  transform: translateY(-2px);
}

.page-payment-methods-e-wallets__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-payment-methods-e-wallets__section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-payment-methods-e-wallets__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-payment-methods-e-wallets__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B94A;
  border-radius: 2px;
}

.page-payment-methods-e-wallets__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-payment-methods-e-wallets__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-payment-methods-e-wallets__highlight {
  color: #0A2463;
  font-weight: bold;
}

.page-payment-methods-e-wallets__image-wrapper {
  text-align: center;
}

.page-payment-methods-e-wallets__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-payment-methods-e-wallets__inline-cta {
  color: #0A2463;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-payment-methods-e-wallets__inline-cta:hover {
  color: #E0B94A;
}

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

.page-payment-methods-e-wallets__benefit-card {
  background-color: #f0f4f8;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-payment-methods-e-wallets__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.page-payment-methods-e-wallets__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-payment-methods-e-wallets__benefit-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-payment-methods-e-wallets__e-wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-payment-methods-e-wallets__e-wallet-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border: 1px solid #e0e0e0;
}

.page-payment-methods-e-wallets__e-wallet-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.page-payment-methods-e-wallets__e-wallet-name {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-payment-methods-e-wallets__e-wallet-card p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
}

.page-payment-methods-e-wallets__e-wallet-cta {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-payment-methods-e-wallets__e-wallet-cta:hover {
  background-color: #1f46b5; /* A complementary blue */
}

.page-payment-methods-e-wallets__how-to-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-payment-methods-e-wallets__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border: 1px solid #e0e0e0;
}

.page-payment-methods-e-wallets__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-payment-methods-e-wallets__step-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-payment-methods-e-wallets__step-card p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 15px;
}

.page-payment-methods-e-wallets__step-link {
  color: #E0B94A;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-payment-methods-e-wallets__step-link:hover {
  color: #f0c95a;
}

.page-payment-methods-e-wallets__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #666;
}

.page-payment-methods-e-wallets__checklist {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-payment-methods-e-wallets__checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #444;
  font-size: 1.05em;
}

.page-payment-methods-e-wallets__checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #E0B94A;
  font-weight: bold;
}

.page-payment-methods-e-wallets__list {
  list-style: disc inside;
  padding-left: 20px;
  margin-top: 20px;
}

.page-payment-methods-e-wallets__list li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1.05em;
}

.page-payment-methods-e-wallets__faq-item {
  background-color: #f0f4f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.page-payment-methods-e-wallets__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-payment-methods-e-wallets__faq-answer {
  font-size: 1em;
  color: #555;
}

.page-payment-methods-e-wallets__conclusion p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-payment-methods-e-wallets__conclusion .page-payment-methods-e-wallets__cta-button {
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-payment-methods-e-wallets__hero-title {
    font-size: 2.8em;
  }

  .page-payment-methods-e-wallets__hero-subtitle {
    font-size: 1.1em;
  }

  .page-payment-methods-e-wallets__section-title {
    font-size: 1.8em;
  }

  .page-payment-methods-e-wallets__content-grid {
    grid-template-columns: 1fr;
  }

  .page-payment-methods-e-wallets__image-wrapper {
    order: -1; /* Image first on mobile for some sections */
  }

  .page-payment-methods-e-wallets__benefits-grid,
  .page-payment-methods-e-wallets__e-wallet-grid,
  .page-payment-methods-e-wallets__how-to-steps {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-payment-methods-e-wallets__hero-section {
    padding: 80px 0;
  }

  .page-payment-methods-e-wallets__hero-title {
    font-size: 2.2em;
  }

  .page-payment-methods-e-wallets__hero-subtitle {
    font-size: 1em;
  }

  .page-payment-methods-e-wallets__section {
    padding: 40px 0;
  }

  .page-payment-methods-e-wallets__section-title {
    font-size: 1.6em;
  }

  .page-payment-methods-e-wallets__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-payment-methods-e-wallets__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-payment-methods-e-wallets__text-content p,
  .page-payment-methods-e-wallets__checklist li,
  .page-payment-methods-e-wallets__list li,
  .page-payment-methods-e-wallets__faq-answer {
    font-size: 0.95em;
  }

  .page-payment-methods-e-wallets__benefit-title,
  .page-payment-methods-e-wallets__e-wallet-name,
  .page-payment-methods-e-wallets__step-title {
    font-size: 1.3em;
  }

  .page-payment-methods-e-wallets__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-e-wallets__hero-section {
    padding: 60px 0;
  }

  .page-payment-methods-e-wallets__hero-title {
    font-size: 1.8em;
  }

  .page-payment-methods-e-wallets__hero-subtitle {
    font-size: 0.9em;
  }

  .page-payment-methods-e-wallets__section {
    padding: 30px 0;
  }

  .page-payment-methods-e-wallets__section-title {
    font-size: 1.4em;
  }

  .page-payment-methods-e-wallets__benefits-grid,
  .page-payment-methods-e-wallets__e-wallet-grid,
  .page-payment-methods-e-wallets__how-to-steps {
    grid-template-columns: 1fr;
  }

  .page-payment-methods-e-wallets__cta-button,
  .page-payment-methods-e-wallets__cta-button--large {
    width: 90%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}