/* style/deposit-withdrawal-withdrawal-guide.css */
.page-deposit-withdrawal-withdrawal-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-deposit-withdrawal-withdrawal-guide__hero-section {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue for better contrast */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-deposit-withdrawal-withdrawal-guide__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: page-deposit-withdrawal-withdrawal-guide__float 6s ease-in-out infinite alternate;
}

.page-deposit-withdrawal-withdrawal-guide__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  animation: page-deposit-withdrawal-withdrawal-guide__float 8s ease-in-out infinite alternate-reverse;
}

@keyframes page-deposit-withdrawal-withdrawal-guide__float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

.page-deposit-withdrawal-withdrawal-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-withdrawal-guide__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-deposit-withdrawal-withdrawal-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-deposit-withdrawal-withdrawal-guide__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0056b3; /* Darker blue for contrast */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-deposit-withdrawal-withdrawal-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-deposit-withdrawal-withdrawal-guide__btn--secondary {
  background-color: #007BFF; /* Primary blue */
  color: #fff;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.page-deposit-withdrawal-withdrawal-guide__btn--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.page-deposit-withdrawal-withdrawal-guide__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-deposit-withdrawal-withdrawal-guide__article {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-deposit-withdrawal-withdrawal-guide__section-title {
  font-size: 2.2em;
  color: #007BFF;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-deposit-withdrawal-withdrawal-guide__article h3 {
  font-size: 1.8em;
  color: #333;
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-deposit-withdrawal-withdrawal-guide__article p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.1em;
}

.page-deposit-withdrawal-withdrawal-guide__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-deposit-withdrawal-withdrawal-guide__list li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1.1em;
}

.page-deposit-withdrawal-withdrawal-guide__list li strong {
  color: #007BFF;
}

.page-deposit-withdrawal-withdrawal-guide__step-card {
  background-color: #eaf6ff; /* Light blue background for steps */
  border-left: 5px solid #007BFF;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.1);
}

.page-deposit-withdrawal-withdrawal-guide__step-title {
  font-size: 2em;
  color: #0056b3; /* Darker blue for step titles */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.page-deposit-withdrawal-withdrawal-guide__step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #FFD700;
  color: #0056b3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-deposit-withdrawal-withdrawal-guide__article {
  counter-reset: step-counter;
}

.page-deposit-withdrawal-withdrawal-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-withdrawal-guide__faq {
  margin-top: 40px;
}

.page-deposit-withdrawal-withdrawal-guide__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-deposit-withdrawal-withdrawal-guide__faq-question {
  font-size: 1.4em;
  color: #007BFF;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #f0f8ff;
  border-bottom: 1px solid #e0e0e0;
}

.page-deposit-withdrawal-withdrawal-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-deposit-withdrawal-withdrawal-guide__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-deposit-withdrawal-withdrawal-guide__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-deposit-withdrawal-withdrawal-guide__faq-answer p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0;
  color: #555;
  font-size: 1em;
}

.page-deposit-withdrawal-withdrawal-guide__faq-answer.open {
  max-height: 500px; /* Adjust as needed */
  padding-bottom: 20px;
}

.page-deposit-withdrawal-withdrawal-guide__cta-section {
  background: linear-gradient(90deg, #007BFF, #4da3ff); /* Gradient with primary color */
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-deposit-withdrawal-withdrawal-guide__cta-content {
  max-width: 900px;
}

.page-deposit-withdrawal-withdrawal-guide__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-deposit-withdrawal-withdrawal-guide__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-deposit-withdrawal-withdrawal-guide__hero-title {
    font-size: 2.5em;
  }

  .page-deposit-withdrawal-withdrawal-guide__hero-subtitle {
    font-size: 1.2em;
  }

  .page-deposit-withdrawal-withdrawal-guide__section-title {
    font-size: 1.8em;
  }

  .page-deposit-withdrawal-withdrawal-guide__article h3 {
    font-size: 1.5em;
  }

  .page-deposit-withdrawal-withdrawal-guide__step-title {
    font-size: 1.5em;
  }

  .page-deposit-withdrawal-withdrawal-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-deposit-withdrawal-withdrawal-guide__cta-title {
    font-size: 2em;
  }

  .page-deposit-withdrawal-withdrawal-guide__cta-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-deposit-withdrawal-withdrawal-guide__hero-title {
    font-size: 2em;
  }

  .page-deposit-withdrawal-withdrawal-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-deposit-withdrawal-withdrawal-guide__section-title {
    font-size: 1.6em;
  }

  .page-deposit-withdrawal-withdrawal-guide__article h3 {
    font-size: 1.3em;
  }

  .page-deposit-withdrawal-withdrawal-guide__step-title {
    font-size: 1.3em;
  }

  .page-deposit-withdrawal-withdrawal-guide__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-deposit-withdrawal-withdrawal-guide__faq-question {
    font-size: 1.2em;
  }

  .page-deposit-withdrawal-withdrawal-guide__cta-title {
    font-size: 1.8em;
  }

  .page-deposit-withdrawal-withdrawal-guide__cta-text {
    font-size: 0.9em;
  }
}