.page-payment-methods-deposit-withdrawal-tutorial {
  color: #333333; /* Dark text for default light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-payment-methods-deposit-withdrawal-tutorial__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-payment-methods-deposit-withdrawal-tutorial__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-payment-methods-deposit-withdrawal-tutorial__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff; /* White text over dark hero image overlay */
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay for text readability */
  border-radius: 10px;
}

.page-payment-methods-deposit-withdrawal-tutorial__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold primary color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-payment-methods-deposit-withdrawal-tutorial__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-payment-methods-deposit-withdrawal-tutorial__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-payment-methods-deposit-withdrawal-tutorial__button--primary {
  background-color: #FFD700; /* Gold primary color */
  color: #8B0000; /* Deep red text for contrast */
  border: 2px solid #FFD700;
}

.page-payment-methods-deposit-withdrawal-tutorial__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-payment-methods-deposit-withdrawal-tutorial__button--secondary {
  background-color: #8B0000; /* Deep red auxiliary color */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #8B0000;
}

.page-payment-methods-deposit-withdrawal-tutorial__button--secondary:hover {
  background-color: #7a0000;
  transform: translateY(-3px);
}

.page-payment-methods-deposit-withdrawal-tutorial__content-area {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-deposit-withdrawal-tutorial__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep red for section titles */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.page-payment-methods-deposit-withdrawal-tutorial__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #555555;
}

.page-payment-methods-deposit-withdrawal-tutorial__step-card {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-payment-methods-deposit-withdrawal-tutorial__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for step titles */
  margin-bottom: 20px;
  position: relative;
}

.page-payment-methods-deposit-withdrawal-tutorial__step-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #8B0000;
  margin: 10px auto 0;
}

.page-payment-methods-deposit-withdrawal-tutorial__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-payment-methods-deposit-withdrawal-tutorial__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #444444;
  max-width: 700px;
}

.page-payment-methods-deposit-withdrawal-tutorial__faq-list {
  margin-top: 50px;
}

.page-payment-methods-deposit-withdrawal-tutorial__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-payment-methods-deposit-withdrawal-tutorial__faq-question {
  font-size: 1.4em;
  color: #8B0000; /* Deep red for FAQ questions */
  margin-bottom: 10px;
}

.page-payment-methods-deposit-withdrawal-tutorial__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-payment-methods-deposit-withdrawal-tutorial__cta-banner {
  position: relative;
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  min-height: 300px; /* Minimum height for CTA banner */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-payment-methods-deposit-withdrawal-tutorial__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-payment-methods-deposit-withdrawal-tutorial__cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-payment-methods-deposit-withdrawal-tutorial__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold primary color for CTA title */
  margin-bottom: 15px;
}

.page-payment-methods-deposit-withdrawal-tutorial__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods-deposit-withdrawal-tutorial__hero-title {
    font-size: 2.8em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-withdrawal-tutorial {
    padding-top: var(--header-offset, 120px);
  }
  .page-payment-methods-deposit-withdrawal-tutorial__hero-title {
    font-size: 2em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__hero-description {
    font-size: 1em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__section-title {
    font-size: 2em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__step-title {
    font-size: 1.5em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__faq-question {
    font-size: 1.2em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__cta-title {
    font-size: 2em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__cta-description {
    font-size: 1em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__content-area,
  .page-payment-methods-deposit-withdrawal-tutorial__hero-content,
  .page-payment-methods-deposit-withdrawal-tutorial__cta-content {
    padding: 20px;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__hero-image,
  .page-payment-methods-deposit-withdrawal-tutorial__step-image,
  .page-payment-methods-deposit-withdrawal-tutorial__cta-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-deposit-withdrawal-tutorial__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__step-title {
    font-size: 1.3em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__cta-title {
    font-size: 1.6em;
  }
}