.page-payment-methods-e-wallets {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-payment-methods-e-wallets__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  text-align: center;
  background-color: #CC0000; /* Main brand color for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-payment-methods-e-wallets__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
  background-color: rgba(0, 0, 0, 0.6); /* Overlay to ensure text readability on background image */
  padding: 30px;
  border-radius: 10px;
}

.page-payment-methods-e-wallets__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for title */
}

.page-payment-methods-e-wallets__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-payment-methods-e-wallets__btn-primary,
.page-payment-methods-e-wallets__btn-secondary,
.page-payment-methods-e-wallets__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-payment-methods-e-wallets__btn-primary {
  background-color: #FFD700;
  color: #0a0a0a; /* Dark text for gold background for contrast */
  border: 2px solid #FFD700;
}

.page-payment-methods-e-wallets__btn-primary:hover {
  background-color: #CC0000;
  color: #ffffff;
  border-color: #ffffff;
}

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

.page-payment-methods-e-wallets__btn-secondary:hover {
  background-color: #ffffff;
  color: #CC0000;
}

.page-payment-methods-e-wallets__btn-link {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-payment-methods-e-wallets__btn-link:hover {
  background-color: #FFD700;
  color: #0a0a0a;
}

.page-payment-methods-e-wallets__btn-large {
  padding: 18px 40px;
  font-size: 1.1em;
}

.page-payment-methods-e-wallets__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-payment-methods-e-wallets__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  /* filter: brightness(0.7); Removed filter as per strict instructions */
}

.page-payment-methods-e-wallets__section {
  padding: 60px 0;
  text-align: center;
}

.page-payment-methods-e-wallets__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-payment-methods-e-wallets__content-area {
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-payment-methods-e-wallets__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-payment-methods-e-wallets__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-e-wallets__feature-grid,
.page-payment-methods-e-wallets__wallet-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-e-wallets__feature-card,
.page-payment-methods-e-wallets__wallet-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-e-wallets__feature-card:hover,
.page-payment-methods-e-wallets__wallet-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-e-wallets__feature-title,
.page-payment-methods-e-wallets__wallet-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods-e-wallets__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-e-wallets__steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-payment-methods-e-wallets__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  color: #ffffff;
  border-left: 5px solid #CC0000;
}

.page-payment-methods-e-wallets__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods-e-wallets__step-item ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-payment-methods-e-wallets__step-item li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.page-payment-methods-e-wallets__tip-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-payment-methods-e-wallets__tip-list li {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  border-bottom: 3px solid #CC0000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

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

.page-payment-methods-e-wallets__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-payment-methods-e-wallets__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-payment-methods-e-wallets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #CC0000;
  transition: background-color 0.3s ease;
}

.page-payment-methods-e-wallets__faq-question:hover {
  background-color: #a00000;
}

.page-payment-methods-e-wallets__faq-title {
  margin: 0;
  color: #ffffff;
  font-size: 1em; /* Adjust to fit parent font size */
}

.page-payment-methods-e-wallets__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-payment-methods-e-wallets__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.03);
}

.page-payment-methods-e-wallets__faq-item.active .page-payment-methods-e-wallets__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-payment-methods-e-wallets__faq-item.active .page-payment-methods-e-wallets__faq-toggle {
  transform: rotate(45deg);
}

.page-payment-methods-e-wallets__conclusion {
  padding-bottom: 80px;
}

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

@media (max-width: 768px) {
  .page-payment-methods-e-wallets__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is not hidden by fixed header */
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods-e-wallets__hero-content {
    padding: 20px;
  }
  .page-payment-methods-e-wallets__hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods-e-wallets__hero-description {
    font-size: 1em;
  }
  .page-payment-methods-e-wallets__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods-e-wallets__btn-primary,
  .page-payment-methods-e-wallets__btn-secondary,
  .page-payment-methods-e-wallets__btn-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }
  .page-payment-methods-e-wallets__btn-large {
    padding: 15px 30px;
    font-size: 1em;
  }

  .page-payment-methods-e-wallets__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-e-wallets__section-description {
    font-size: 0.95em;
  }
  .page-payment-methods-e-wallets__container {
    padding: 0 15px;
  }
  .page-payment-methods-e-wallets__feature-grid,
  .page-payment-methods-e-wallets__wallet-list,
  .page-payment-methods-e-wallets__tip-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-payment-methods-e-wallets__feature-card,
  .page-payment-methods-e-wallets__wallet-item,
  .page-payment-methods-e-wallets__step-item,
  .page-payment-methods-e-wallets__tip-list li {
    padding: 20px;
  }
  .page-payment-methods-e-wallets__step-title {
    font-size: 1.5em;
  }
  .page-payment-methods-e-wallets__tip-title {
    font-size: 1.2em;
  }

  /* Image responsiveness */
  .page-payment-methods-e-wallets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-payment-methods-e-wallets__hero-image-wrapper,
  .page-payment-methods-e-wallets__section,
  .page-payment-methods-e-wallets__container,
  .page-payment-methods-e-wallets__hero-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* FAQ responsiveness */
  .page-payment-methods-e-wallets__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-payment-methods-e-wallets__faq-title {
    font-size: 1em;
  }
  .page-payment-methods-e-wallets__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-e-wallets__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-e-wallets__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-e-wallets__faq-question {
    font-size: 1em;
  }
}

/* Color contrast fixes for specific elements if needed */
.page-payment-methods-e-wallets p,
.page-payment-methods-e-wallets li {
  color: #f0f0f0; /* Ensure light text on dark background for general paragraphs */
}

.page-payment-methods-e-wallets__feature-card p,
.page-payment-methods-e-wallets__wallet-item p,
.page-payment-methods-e-wallets__step-item p,
.page-payment-methods-e-wallets__tip-list li p {
  color: #e0e0e0;
}

.page-payment-methods-e-wallets__faq-answer p {
  color: #e0e0e0;
}