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

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

.page-faq-deposit-withdrawal__hero {
  background: linear-gradient(135deg, #0A192F, #1e3a62);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-faq-deposit-withdrawal__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-deposit-withdrawal__hero-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-faq-deposit-withdrawal__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-faq-deposit-withdrawal__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #0A192F; /* Dark text for auxiliary background */
}

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

.page-faq-deposit-withdrawal__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-faq-deposit-withdrawal__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-faq-deposit-withdrawal__content {
  padding: 50px 0;
}

.page-faq-deposit-withdrawal__faq-list {
  background-color: #1a2a47; /* Slightly lighter dark background for contrast */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-faq-deposit-withdrawal__faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.page-faq-deposit-withdrawal__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

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

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

.page-faq-deposit-withdrawal__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

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

.page-faq-deposit-withdrawal__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-faq-deposit-withdrawal__faq-answer a:hover {
  color: #e6c200;
}

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

.page-faq-deposit-withdrawal__cta-section {
  text-align: center;
  background-color: #0A192F;
  padding: 60px 30px;
  border-radius: 8px;
  margin-top: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-faq-deposit-withdrawal__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-faq-deposit-withdrawal__cta-text {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-faq-deposit-withdrawal__cta-buttons .page-faq-deposit-withdrawal__btn {
  margin: 0 10px;
}

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

  .page-faq-deposit-withdrawal__hero-subtitle,
  .page-faq-deposit-withdrawal__faq-answer,
  .page-faq-deposit-withdrawal__cta-text {
    font-size: 1em;
  }

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

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

  .page-faq-deposit-withdrawal__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-faq-deposit-withdrawal__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

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

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

  .page-faq-deposit-withdrawal__faq-list,
  .page-faq-deposit-withdrawal__cta-section {
    padding: 20px;
  }
}