.page-payment-methods-deposit-withdrawal-tutorial {
  color: #333333; /* Default dark text for light body background */
}

.page-payment-methods-deposit-withdrawal-tutorial__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0A2342; /* Main brand color for hero background */
}

.page-payment-methods-deposit-withdrawal-tutorial__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.page-payment-methods-deposit-withdrawal-tutorial__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-payment-methods-deposit-withdrawal-tutorial__hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 900px;
}

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

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

.page-payment-methods-deposit-withdrawal-tutorial__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button */
  color: #0A2342; /* Main color for button text */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-payment-methods-deposit-withdrawal-tutorial__intro-section {
  background-color: #f8f8f8;
  padding: 60px 0;
  text-align: center;
}

.page-payment-methods-deposit-withdrawal-tutorial__intro-heading {
  font-size: 2.5em;
  color: #0A2342;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-withdrawal-tutorial__intro-text {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.page-payment-methods-deposit-withdrawal-tutorial__deposit-guide,
.page-payment-methods-deposit-withdrawal-tutorial__withdrawal-guide {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-payment-methods-deposit-withdrawal-tutorial__deposit-guide {
  background-color: #fdfaf5;
}

.page-payment-methods-deposit-withdrawal-tutorial__section-heading {
  font-size: 2.8em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-payment-methods-deposit-withdrawal-tutorial__section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-payment-methods-deposit-withdrawal-tutorial__section-subtext {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: #555555;
}

.page-payment-methods-deposit-withdrawal-tutorial__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-payment-methods-deposit-withdrawal-tutorial__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-payment-methods-deposit-withdrawal-tutorial__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-deposit-withdrawal-tutorial__step-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-payment-methods-deposit-withdrawal-tutorial__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-withdrawal-tutorial__step-button {
  display: inline-block;
  background-color: #DC143C; /* Deep red for CTA */
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-payment-methods-deposit-withdrawal-tutorial__step-button:hover {
  background-color: #b31030;
}

.page-payment-methods-deposit-withdrawal-tutorial__illustration-image {
  display: block;
  margin: 0 auto 50px;
  width: 100%;
  max-width: 800px; /* Ensure images don't exceed container width */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-deposit-withdrawal-tutorial__cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-payment-methods-deposit-withdrawal-tutorial__security-section {
  background-color: #0A2342;
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
}

.page-payment-methods-deposit-withdrawal-tutorial__security-section .page-payment-methods-deposit-withdrawal-tutorial__section-heading {
  color: #FFD700;
}

.page-payment-methods-deposit-withdrawal-tutorial__security-section .page-payment-methods-deposit-withdrawal-tutorial__section-heading::after {
  background-color: #DC143C;
}

.page-payment-methods-deposit-withdrawal-tutorial__security-section .page-payment-methods-deposit-withdrawal-tutorial__section-subtext {
  color: #f0f0f0;
}

.page-payment-methods-deposit-withdrawal-tutorial__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-payment-methods-deposit-withdrawal-tutorial__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-payment-methods-deposit-withdrawal-tutorial__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-payment-methods-deposit-withdrawal-tutorial__faq-section {
  padding: 80px 0;
  background-color: #fdfaf5;
}

.page-payment-methods-deposit-withdrawal-tutorial__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FFD700;
}

.page-payment-methods-deposit-withdrawal-tutorial__faq-question {
  font-size: 1.4em;
  color: #0A2342;
  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__faq-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #DC143C;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-payment-methods-deposit-withdrawal-tutorial__faq-button:hover {
  background-color: #b31030;
}

.page-payment-methods-deposit-withdrawal-tutorial__tips-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-payment-methods-deposit-withdrawal-tutorial__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-payment-methods-deposit-withdrawal-tutorial__tip-item {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #444444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #0A2342;
}

.page-payment-methods-deposit-withdrawal-tutorial__tip-item strong {
  color: #0A2342;
}

.page-payment-methods-deposit-withdrawal-tutorial__tips-cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-payment-methods-deposit-withdrawal-tutorial__final-cta {
  background: linear-gradient(135deg, #0A2342, #1a3d6d);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-payment-methods-deposit-withdrawal-tutorial__final-cta-heading {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-withdrawal-tutorial__final-cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-payment-methods-deposit-withdrawal-tutorial__final-cta-button {
  display: inline-block;
  background-color: #DC143C;
  color: #ffffff;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-withdrawal-tutorial__final-cta-button:hover {
  background-color: #b31030;
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-methods-deposit-withdrawal-tutorial__hero-title {
    font-size: 3em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__section-heading {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-withdrawal-tutorial__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-payment-methods-deposit-withdrawal-tutorial__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__hero-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__intro-heading,
  .page-payment-methods-deposit-withdrawal-tutorial__section-heading {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__section-subtext {
    font-size: 1em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__steps-grid,
  .page-payment-methods-deposit-withdrawal-tutorial__security-features {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__step-title,
  .page-payment-methods-deposit-withdrawal-tutorial__feature-title {
    font-size: 1.5em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__faq-question {
    font-size: 1.2em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__final-cta-heading {
    font-size: 2.2em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__final-cta-description {
    font-size: 1.1em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__final-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__illustration-image {
    max-width: 100%; /* Important for mobile overflow prevention */
    height: auto; /* Important for mobile overflow prevention */
  }
  /* Ensure all images within content area are responsive and do not cause overflow */
  .page-payment-methods-deposit-withdrawal-tutorial img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-deposit-withdrawal-tutorial__hero-title {
    font-size: 2em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__hero-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__intro-heading,
  .page-payment-methods-deposit-withdrawal-tutorial__section-heading {
    font-size: 1.6em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__final-cta-heading {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-withdrawal-tutorial__final-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
}