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

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

.page-faq-deposit-withdrawal__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a335a 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-faq-deposit-withdrawal__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-faq-deposit-withdrawal__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-faq-deposit-withdrawal__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #C0C0C0; /* Lighter gray for description */
}

.page-faq-deposit-withdrawal__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #0A192F; /* 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, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-faq-deposit-withdrawal__hero-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.1;
  z-index: 0;
}

.page-faq-deposit-withdrawal__hero-image {
  width: 400px;
  height: auto;
  transform: rotate(15deg);
}

.page-faq-deposit-withdrawal__section {
  padding: 60px 0;
}

.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__button {
  display: inline-block;
  background-color: #FFD700; /* Gold for buttons */
  color: #0A192F; /* Dark blue text on gold button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-faq-deposit-withdrawal__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__faq-list {
  margin-top: 30px;
}

.page-faq-deposit-withdrawal__faq-item {
  background-color: #1A2E4B; /* Slightly lighter dark blue for FAQ items */
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq-deposit-withdrawal__faq-question {
  background-color: #12243F; /* Even darker blue for question headers */
  color: #FFD700; /* Gold for questions */
  padding: 20px 25px;
  margin: 0;
  font-size: 1.3em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

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

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

.page-faq-deposit-withdrawal__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #C0C0C0;
}

.page-faq-deposit-withdrawal__faq-answer.active {
  max-height: 500px; /* Adjust based on expected content length */
  padding: 20px 25px;
}

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

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

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

.page-faq-deposit-withdrawal__image-small {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-deposit-withdrawal__image-large {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-faq-deposit-withdrawal__support .page-faq-deposit-withdrawal__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  margin-right: 15px;
}

.page-faq-deposit-withdrawal__support .page-faq-deposit-withdrawal__button--primary:hover {
  background-color: #e6c200;
}

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

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

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

  .page-faq-deposit-withdrawal__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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

  .page-faq-deposit-withdrawal__faq-answer.active {
    padding: 15px 20px;
  }

  .page-faq-deposit-withdrawal__hero-image-wrapper {
    display: none;
  }
}

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

  .page-faq-deposit-withdrawal__hero-description {
    font-size: 0.9em;
  }

  .page-faq-deposit-withdrawal__hero-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

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

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

  .page-faq-deposit-withdrawal__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-faq-deposit-withdrawal__faq-answer {
    padding: 0 15px;
  }

  .page-faq-deposit-withdrawal__faq-answer.active {
    padding: 12px 15px;
  }
}