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

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

.page-deposit-withdrawal-faq__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1A3050 100%); /* Dark blue gradient */
  color: #FFD700; /* Gold for hero title */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-deposit-withdrawal-faq__hero-subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-deposit-withdrawal-faq__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-deposit-withdrawal-faq__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-deposit-withdrawal-faq__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue text */
}

.page-deposit-withdrawal-faq__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-deposit-withdrawal-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-deposit-withdrawal-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-deposit-withdrawal-faq__section--spacing {
  padding: 60px 0;
}

.page-deposit-withdrawal-faq__faq-section {
  background-color: #0A192F;
  color: #E0E0E0;
}

.page-deposit-withdrawal-faq__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 10px;
  position: relative;
}

.page-deposit-withdrawal-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-deposit-withdrawal-faq__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-faq__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-deposit-withdrawal-faq__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-faq__list li {
  background-color: #1A3050; /* Slightly lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #E0E0E0;
  position: relative;
  padding-left: 40px;
}

.page-deposit-withdrawal-faq__list li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  position: absolute;
  left: 15px;
  font-size: 1.2em;
  top: 15px;
}

.page-deposit-withdrawal-faq__list--numbered li::before {
  content: counter(list-item) ". ";
  counter-increment: list-item;
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 15px;
  font-size: 1.2em;
  top: 15px;
}

.page-deposit-withdrawal-faq__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-faq__image--large {
  width: 90%;
}

.page-deposit-withdrawal-faq__image--medium {
  width: 70%;
}

.page-deposit-withdrawal-faq__accordion {
  margin-top: 30px;
}

.page-deposit-withdrawal-faq__accordion-item {
  background-color: #1A3050; /* Lighter dark blue for accordion items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-faq__accordion-header {
  font-size: 1.3em;
  color: #FFD700; /* Gold for accordion headers */
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1A3050;
  border-bottom: 1px solid #2A4060;
  margin: 0;
  position: relative;
}

.page-deposit-withdrawal-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-deposit-withdrawal-faq__accordion-item.active .page-deposit-withdrawal-faq__accordion-header::after {
  transform: rotate(45deg);
}

.page-deposit-withdrawal-faq__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #0A192F; /* Main dark blue for content */
  color: #E0E0E0;
}

.page-deposit-withdrawal-faq__accordion-content p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
}

.page-deposit-withdrawal-faq__accordion-content .page-deposit-withdrawal-faq__list li {
  background-color: #1A3050;
}

.page-deposit-withdrawal-faq__accordion-content .page-deposit-withdrawal-faq__image {
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-deposit-withdrawal-faq__cta-banner {
  background: linear-gradient(90deg, #FFD700 0%, #E6C200 100%); /* Gold gradient */
  color: #0A192F; /* Dark blue text on gold */
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-deposit-withdrawal-faq__cta-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #0A192F;
}

.page-deposit-withdrawal-faq__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333;
}

.page-deposit-withdrawal-faq__cta-banner .page-deposit-withdrawal-faq__btn {
  margin: 0 10px;
}

.page-deposit-withdrawal-faq__cta-banner .page-deposit-withdrawal-faq__btn--primary {
  background-color: #0A192F;
  color: #FFD700;
}

.page-deposit-withdrawal-faq__cta-banner .page-deposit-withdrawal-faq__btn--primary:hover {
  background-color: #1A3050;
  color: #FFD700;
}

.page-deposit-withdrawal-faq__cta-banner .page-deposit-withdrawal-faq__btn--secondary {
  border-color: #0A192F;
  color: #0A192F;
}

.page-deposit-withdrawal-faq__cta-banner .page-deposit-withdrawal-faq__btn--secondary:hover {
  background-color: #0A192F;
  color: #FFD700;
}

.page-deposit-withdrawal-faq__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-deposit-withdrawal-faq__contact-list li {
  background-color: #1A3050;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
}

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

  .page-deposit-withdrawal-faq__hero-subtitle {
    font-size: 1.1em;
  }

  .page-deposit-withdrawal-faq__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-deposit-withdrawal-faq__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-deposit-withdrawal-faq__section-title {
    font-size: 2em;
  }

  .page-deposit-withdrawal-faq__subsection-title {
    font-size: 1.5em;
  }

  .page-deposit-withdrawal-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-deposit-withdrawal-faq__cta-banner {
    padding: 30px;
  }

  .page-deposit-withdrawal-faq__cta-title {
    font-size: 1.8em;
  }

  .page-deposit-withdrawal-faq__cta-text {
    font-size: 1em;
  }

  .page-deposit-withdrawal-faq__cta-banner .page-deposit-withdrawal-faq__btn {
    width: 90%;
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .page-deposit-withdrawal-faq__hero-section {
    padding: 60px 0;
  }

  .page-deposit-withdrawal-faq__hero-title {
    font-size: 2em;
  }

  .page-deposit-withdrawal-faq__hero-subtitle {
    font-size: 1em;
  }

  .page-deposit-withdrawal-faq__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-deposit-withdrawal-faq__section--spacing {
    padding: 40px 0;
  }

  .page-deposit-withdrawal-faq__section-title {
    font-size: 1.8em;
  }

  .page-deposit-withdrawal-faq__subsection-title {
    font-size: 1.3em;
  }

  .page-deposit-withdrawal-faq__text-content,
  .page-deposit-withdrawal-faq__list li,
  .page-deposit-withdrawal-faq__contact-list li {
    font-size: 0.95em;
  }

  .page-deposit-withdrawal-faq__accordion-header {
    font-size: 1em;
  }

  .page-deposit-withdrawal-faq__cta-banner {
    padding: 20px;
  }

  .page-deposit-withdrawal-faq__cta-title {
    font-size: 1.5em;
  }
}