.page-how-to-deposit-withdraw-withdrawal-guide {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --dark-bg-color: #1a1a1a; /* Dark background */
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --grey-text-color: #cccccc;
  --border-color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--light-text-color);
  background-color: var(--dark-bg-color);
}

.page-how-to-deposit-withdraw-withdrawal-guide a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-how-to-deposit-withdraw-withdrawal-guide a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-how-to-deposit-withdraw-withdrawal-guide__hero {
  position: relative;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-bg-color) 0%, rgba(30, 144, 255, 0.2) 100%); /* Subtle gradient for depth */
}

.page-how-to-deposit-withdraw-withdrawal-guide__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-how-to-deposit-withdraw-withdrawal-guide__hero-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  margin-top: -80px; /* Overlap with image for better visual flow */
  position: relative;
  z-index: 2;
}

.page-how-to-deposit-withdraw-withdrawal-guide__hero-title {
  font-size: 2.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-how-to-deposit-withdraw-withdrawal-guide__hero-description {
  font-size: 1.2em;
  color: var(--light-text-color);
  margin-bottom: 30px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--light-text-color);
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-how-to-deposit-withdraw-withdrawal-guide__cta-button:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-how-to-deposit-withdraw-withdrawal-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-how-to-deposit-withdraw-withdrawal-guide__section:last-of-type {
  border-bottom: none;
}

.page-how-to-deposit-withdraw-withdrawal-guide__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__paragraph {
  font-size: 1.1em;
  color: var(--grey-text-color);
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-how-to-deposit-withdraw-withdrawal-guide__step-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-how-to-deposit-withdraw-withdrawal-guide__step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-how-to-deposit-withdraw-withdrawal-guide__step-image {
  width: 40%;
  height: auto;
  border-radius: 8px;
  margin: 0 30px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__step-content {
  flex: 1;
}

.page-how-to-deposit-withdraw-withdrawal-guide__step-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  color: var(--grey-text-color);
  font-size: 1.05em;
}

.page-how-to-deposit-withdraw-withdrawal-guide__list li {
  margin-bottom: 10px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__method-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__method-list li {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid var(--secondary-color);
}

.page-how-to-deposit-withdraw-withdrawal-guide__method-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__issue-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Styles */
.page-how-to-deposit-withdraw-withdrawal-guide__faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: #2a2a2a;
}

.page-how-to-deposit-withdraw-withdrawal-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-how-to-deposit-withdraw-withdrawal-guide__faq-question:hover {
  background: #4a4a4a;
}

.page-how-to-deposit-withdraw-withdrawal-guide__faq-title {
  font-size: 1.25em;
  color: var(--light-text-color);
  margin: 0;
  flex-grow: 1;
}

.page-how-to-deposit-withdraw-withdrawal-guide__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-how-to-deposit-withdraw-withdrawal-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  color: var(--grey-text-color);
}

.page-how-to-deposit-withdraw-withdrawal-guide__faq-item.active .page-how-to-deposit-withdraw-withdrawal-guide__faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
  background: #2a2a2a;
  border-radius: 0 0 8px 8px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__faq-item.active .page-how-to-deposit-withdraw-withdrawal-guide__faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-how-to-deposit-withdraw-withdrawal-guide__cta-bottom {
  text-align: center;
  background-color: #2a2a2a;
  padding: 80px 0;
  border-radius: 10px;
  margin: 60px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-how-to-deposit-withdraw-withdrawal-guide__cta-content {
  max-width: 800px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__cta-title {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.page-how-to-deposit-withdraw-withdrawal-guide__cta-description {
  font-size: 1.2em;
  color: var(--grey-text-color);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-how-to-deposit-withdraw-withdrawal-guide__hero-title {
    font-size: 2.2em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__section-title {
    font-size: 1.8em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__step-item {
    flex-direction: column;
    text-align: center;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__step-item:nth-child(even) {
    flex-direction: column;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__step-image {
    width: 80%;
    margin: 0 auto 30px auto;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__method-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-how-to-deposit-withdraw-withdrawal-guide__hero {
    padding: 60px 0;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__hero-title {
    font-size: 1.8em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__hero-description {
    font-size: 1em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__section {
    padding: 40px 0;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__paragraph {
    font-size: 0.95em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__step-item {
    padding: 20px;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__step-image {
    width: 90%;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__step-title {
    font-size: 1.5em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__method-list li {
    padding: 20px;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__method-title {
    font-size: 1.3em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__issue-title {
    font-size: 1.2em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__faq-question {
    padding: 15px 20px;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__faq-title {
    font-size: 1.1em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__faq-answer {
    padding: 0 20px;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__faq-item.active .page-how-to-deposit-withdraw-withdrawal-guide__faq-answer {
    padding: 20px;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__cta-bottom {
    padding: 50px 0;
    margin: 40px auto;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__cta-title {
    font-size: 2em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-how-to-deposit-withdraw-withdrawal-guide__hero-title {
    font-size: 1.5em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__section-title {
    font-size: 1.4em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__step-title {
    font-size: 1.3em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__cta-title {
    font-size: 1.8em;
  }
  .page-how-to-deposit-withdraw-withdrawal-guide__faq-toggle {
    font-size: 1.5em;
  }
}