.page-faq-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2239; /* Dark blue background */
  line-height: 1.6;
}

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

.page-faq-deposit-withdrawal__hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #0A2239 0%, #1A3A54 100%); /* Dark blue gradient */
  overflow: hidden;
  color: #FFFFFF;
}

.page-faq-deposit-withdrawal__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-faq-deposit-withdrawal__hero .page-faq-deposit-withdrawal__container {
  position: relative;
  z-index: 1;
}

.page-faq-deposit-withdrawal__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-deposit-withdrawal__subtitle {
  font-size: 1.5em;
  color: #FFFFFF; /* White for subtitle */
  margin-bottom: 40px;
}

.page-faq-deposit-withdrawal__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq-deposit-withdrawal__section:last-of-type {
  border-bottom: none;
}

.page-faq-deposit-withdrawal__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq-deposit-withdrawal__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-faq-deposit-withdrawal__faq-item {
  background-color: #1A3A54; /* Slightly lighter dark blue for FAQ items */
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 25px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD70033; /* Light gold border */
}

.page-faq-deposit-withdrawal__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold for questions */
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-question:hover {
  color: #FFE066;
}

.page-faq-deposit-withdrawal__faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq-deposit-withdrawal__faq-answer {
  font-size: 1em;
  color: #CCCCCC; /* Lighter gray for answers */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding-top: 0;
}

.page-faq-deposit-withdrawal__faq-answer.active {
  max-height: 500px; /* Adjust as needed for content length */
  padding-top: 15px;
}

.page-faq-deposit-withdrawal__faq-answer p {
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__faq-answer ul,
.page-faq-deposit-withdrawal__faq-answer ol {
  margin-left: 25px;
  margin-bottom: 15px;
  list-style-type: disc;
}

.page-faq-deposit-withdrawal__faq-answer ol {
  list-style-type: decimal;
}

.page-faq-deposit-withdrawal__faq-answer li {
  margin-bottom: 8px;
  color: #E0E0E0;
}

.page-faq-deposit-withdrawal__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-faq-deposit-withdrawal__cta-button:hover {
  background-color: #FFE066; /* Lighter gold on hover */
  color: #0A2239;
}

.page-faq-deposit-withdrawal__cta-button--secondary {
  background-color: #0A2239; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue button */
  border: 2px solid #FFD700;
}

.page-faq-deposit-withdrawal__cta-button--secondary:hover {
  background-color: #1A3A54;
  color: #FFE066;
  border-color: #FFE066;
}

.page-faq-deposit-withdrawal__cta-link {
  color: #FFD700; /* Gold for links */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-faq-deposit-withdrawal__cta-link:hover {
  color: #FFE066;
}

.page-faq-deposit-withdrawal__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-faq-deposit-withdrawal__contact-support ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.page-faq-deposit-withdrawal__contact-support li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-faq-deposit-withdrawal__button-group {
  text-align: center;
  margin-top: 30px;
}

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

  .page-faq-deposit-withdrawal__subtitle {
    font-size: 1.2em;
  }

  .page-faq-deposit-withdrawal__section-title {
    font-size: 2em;
  }

  .page-faq-deposit-withdrawal__faq-question {
    font-size: 1.2em;
  }

  .page-faq-deposit-withdrawal__faq-item {
    padding: 20px;
  }

  .page-faq-deposit-withdrawal__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
}

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

  .page-faq-deposit-withdrawal__subtitle {
    font-size: 1em;
  }

  .page-faq-deposit-withdrawal__section-title {
    font-size: 1.8em;
  }

  .page-faq-deposit-withdrawal__faq-question {
    font-size: 1.1em;
  }

  .page-faq-deposit-withdrawal__faq-answer {
    font-size: 0.95em;
  }

  .page-faq-deposit-withdrawal__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }
  .page-faq-deposit-withdrawal__button-group {
    flex-direction: column;
    align-items: center;
  }
}