.page-faq-deposit-withdraw {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text for contrast */
  background-color: #1A202C; /* Primary dark background */
}

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

.page-faq-deposit-withdraw__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark gradient for hero */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #FFD700; /* Accent border */
}

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

.page-faq-deposit-withdraw__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.7);
}

.page-faq-deposit-withdraw__subtitle {
  font-size: 1.5em;
  color: #F0F0F0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-faq-deposit-withdraw__section-heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-faq-deposit-withdraw__section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C; /* Deep red accent line */
  border-radius: 2px;
}

.page-faq-deposit-withdraw__section-heading--spacing {
  margin-top: 80px;
}

.page-faq-deposit-withdraw__intro-section {
  padding: 60px 0;
  background-color: #242c3d;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-faq-deposit-withdraw__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #D0D0D0;
  text-align: justify;
}

.page-faq-deposit-withdraw__text-block strong {
  color: #FFD700;
}

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

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

.page-faq-deposit-withdraw__accordion-item {
  background-color: #242c3d;
  border: 1px solid #3a4a6b;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.page-faq-deposit-withdraw__accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-faq-deposit-withdraw__accordion-header {
  background-color: #3a4a6b; /* Darker blue for header */
  color: #FFD700; /* Gold for question text */
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-faq-deposit-withdraw__accordion-header:hover {
  background-color: #4a5a7b;
}

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

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

.page-faq-deposit-withdraw__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #2c384a;
  color: #D0D0D0;
  line-height: 1.7;
}

.page-faq-deposit-withdraw__accordion-content.active {
  max-height: 1000px; /* Adjust as needed for content height */
  padding: 20px 25px;
}

.page-faq-deposit-withdraw__accordion-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-faq-deposit-withdraw__accordion-content ul,
.page-faq-deposit-withdraw__accordion-content ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-faq-deposit-withdraw__accordion-content li {
  margin-bottom: 8px;
  color: #C0C0C0;
}

.page-faq-deposit-withdraw__accordion-content strong {
  color: #FFD700;
}

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

.page-faq-deposit-withdraw__cta {
  background-color: #242c3d; /* Dark background for CTA */
  padding: 60px 40px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-faq-deposit-withdraw__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-faq-deposit-withdraw__cta-text {
  font-size: 1.2em;
  color: #D0D0D0;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.page-faq-deposit-withdraw__button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0 10px;
  min-width: 200px;
  text-align: center;
}

.page-faq-deposit-withdraw__button--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #1A202C; /* Dark text for primary button */
  border: 2px solid #FFD700;
}

.page-faq-deposit-withdraw__button--primary:hover {
  background-color: #e6c200;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-faq-deposit-withdraw__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-faq-deposit-withdraw__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq-deposit-withdraw__title {
    font-size: 2.8em;
  }
  .page-faq-deposit-withdraw__subtitle {
    font-size: 1.3em;
  }
  .page-faq-deposit-withdraw__section-heading {
    font-size: 2em;
  }
  .page-faq-deposit-withdraw__cta-title {
    font-size: 2.2em;
  }
  .page-faq-deposit-withdraw__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .page-faq-deposit-withdraw__hero {
    padding: 60px 0 30px;
  }
  .page-faq-deposit-withdraw__title {
    font-size: 2.2em;
  }
  .page-faq-deposit-withdraw__subtitle {
    font-size: 1.1em;
  }
  .page-faq-deposit-withdraw__section-heading {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-faq-deposit-withdraw__intro-section, .page-faq-deposit-withdraw__faq-section, .page-faq-deposit-withdraw__cta {
    padding: 40px 0;
  }
  .page-faq-deposit-withdraw__text-block {
    font-size: 1em;
  }
  .page-faq-deposit-withdraw__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-faq-deposit-withdraw__accordion-content {
    padding: 15px 20px;
  }
  .page-faq-deposit-withdraw__cta-title {
    font-size: 1.8em;
  }
  .page-faq-deposit-withdraw__cta-text {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-faq-deposit-withdraw__button {
    display: block;
    margin: 15px auto;
    width: 80%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .page-faq-deposit-withdraw__title {
    font-size: 1.8em;
  }
  .page-faq-deposit-withdraw__subtitle {
    font-size: 0.9em;
  }
  .page-faq-deposit-withdraw__section-heading {
    font-size: 1.5em;
  }
  .page-faq-deposit-withdraw__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-faq-deposit-withdraw__accordion-content {
    padding: 12px 15px;
  }
  .page-faq-deposit-withdraw__cta-title {
    font-size: 1.5em;
  }
  .page-faq-deposit-withdraw__button {
    font-size: 0.9em;
    padding: 10px 20px;
    width: 90%;
  }
}