/* style/payment-methods-e-wallet-payment-tutorial.css */
.page-payment-methods-e-wallet-payment-tutorial {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E2E8F0; /* Light text for dark background */
  background-color: #1A202C; /* Main background color */
}

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

.page-payment-methods-e-wallet-payment-tutorial__hero {
  background: linear-gradient(135deg, #1A202C 0%, #303A4F 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-payment-methods-e-wallet-payment-tutorial__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[IMAGE:hero_banner]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-payment-methods-e-wallet-payment-tutorial__hero > * {
  position: relative;
  z-index: 1;
}

.page-payment-methods-e-wallet-payment-tutorial__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-e-wallet-payment-tutorial__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E2E8F0;
}

.page-payment-methods-e-wallet-payment-tutorial__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-payment-methods-e-wallet-payment-tutorial__button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-payment-methods-e-wallet-payment-tutorial__section {
  padding: 60px 0;
  background-color: #1A202C;
  color: #E2E8F0;
}

.page-payment-methods-e-wallet-payment-tutorial__section--alt {
  background-color: #2D3748;
}

.page-payment-methods-e-wallet-payment-tutorial__heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-payment-methods-e-wallet-payment-tutorial__sub-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-payment-methods-e-wallet-payment-tutorial__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #CBD5E0;
}

.page-payment-methods-e-wallet-payment-tutorial__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #CBD5E0;
}

.page-payment-methods-e-wallet-payment-tutorial__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.8;
}

.page-payment-methods-e-wallet-payment-tutorial__list li strong {
  color: #FFD700;
}

.page-payment-methods-e-wallet-payment-tutorial__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #CBD5E0;
}

.page-payment-methods-e-wallet-payment-tutorial__ordered-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.8;
}

.page-payment-methods-e-wallet-payment-tutorial__ordered-list li strong {
  color: #FFD700;
}

.page-payment-methods-e-wallet-payment-tutorial__ordered-list li a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-payment-methods-e-wallet-payment-tutorial__ordered-list li a:hover {
  color: #E6C200;
}

.page-payment-methods-e-wallet-payment-tutorial__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-payment-methods-e-wallet-payment-tutorial__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.page-payment-methods-e-wallet-payment-tutorial__section--cta {
  text-align: center;
  padding: 80px 0;
  background-color: #1A202C;
  border-top: 5px solid #FFD700;
}

.page-payment-methods-e-wallet-payment-tutorial__section--cta .page-payment-methods-e-wallet-payment-tutorial__button {
  margin: 0 10px;
}

.page-payment-methods-e-wallet-payment-tutorial__button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-payment-methods-e-wallet-payment-tutorial__button--primary:hover {
  background-color: #E6C200;
}

.page-payment-methods-e-wallet-payment-tutorial__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-payment-methods-e-wallet-payment-tutorial__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-payment-methods-e-wallet-payment-tutorial__title {
    font-size: 2.5em;
  }

  .page-payment-methods-e-wallet-payment-tutorial__subtitle {
    font-size: 1.2em;
  }

  .page-payment-methods-e-wallet-payment-tutorial__heading {
    font-size: 2em;
  }

  .page-payment-methods-e-wallet-payment-tutorial__sub-heading {
    font-size: 1.5em;
  }

  .page-payment-methods-e-wallet-payment-tutorial__hero {
    padding: 60px 0;
  }

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

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

  .page-payment-methods-e-wallet-payment-tutorial__section--cta .page-payment-methods-e-wallet-payment-tutorial__button {
    display: block;
    margin: 15px auto;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-e-wallet-payment-tutorial__title {
    font-size: 2em;
  }

  .page-payment-methods-e-wallet-payment-tutorial__subtitle {
    font-size: 1em;
  }

  .page-payment-methods-e-wallet-payment-tutorial__heading {
    font-size: 1.8em;
  }

  .page-payment-methods-e-wallet-payment-tutorial__sub-heading {
    font-size: 1.3em;
  }

  .page-payment-methods-e-wallet-payment-tutorial__list, .page-payment-methods-e-wallet-payment-tutorial__ordered-list {
    margin-left: 15px;
  }

  .page-payment-methods-e-wallet-payment-tutorial__text, .page-payment-methods-e-wallet-payment-tutorial__list li, .page-payment-methods-e-wallet-payment-tutorial__ordered-list li {
    font-size: 0.95em;
  }
}