.page-faq-deposit-withdrawal {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-faq-deposit-withdrawal__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 500px;
  background-color: #000000; /* Dark background for hero for contrast */
  color: #FFFFFF;
  overflow: hidden;
}

.page-faq-deposit-withdrawal__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-faq-deposit-withdrawal__hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-faq-deposit-withdrawal__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45;
}

.page-faq-deposit-withdrawal__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

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

.page-faq-deposit-withdrawal__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-faq-deposit-withdrawal__btn--register {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-faq-deposit-withdrawal__btn--register:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__btn--login {
  background-color: transparent;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-faq-deposit-withdrawal__btn--login:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__faq-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-faq-deposit-withdrawal__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #000000;
}

.page-faq-deposit-withdrawal__faq-category {
  margin-bottom: 40px;
}

.page-faq-deposit-withdrawal__category-title {
  font-size: 2em;
  margin-bottom: 30px;
  color: #000000;
  text-align: center;
}

.page-faq-deposit-withdrawal__accordion-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-faq-deposit-withdrawal__accordion-header {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
  background-color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

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

.page-faq-deposit-withdrawal__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq-deposit-withdrawal__accordion-content p {
  padding-bottom: 20px;
  color: #555555;
}

.page-faq-deposit-withdrawal__accordion-content--open {
  max-height: 500px; /* Adjust as needed */
  padding-top: 15px;
  padding-bottom: 20px;
}

.page-faq-deposit-withdrawal__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-faq-deposit-withdrawal__btn--support {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 10px;
}

.page-faq-deposit-withdrawal__btn--support:hover {
  background-color: #333333;
}

.page-faq-deposit-withdrawal__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-faq-deposit-withdrawal__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45;
  position: relative;
  z-index: 2;
}

.page-faq-deposit-withdrawal__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.page-faq-deposit-withdrawal__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.page-faq-deposit-withdrawal__btn--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-faq-deposit-withdrawal__btn--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__btn--secondary {
  background-color: transparent;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-faq-deposit-withdrawal__btn--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@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__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-faq-deposit-withdrawal__btn {
    width: 100%;
    max-width: 300px;
  }

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

  .page-faq-deposit-withdrawal__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-faq-deposit-withdrawal__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-faq-deposit-withdrawal__faq-section,
  .page-faq-deposit-withdrawal__cta-section {
    padding: 40px 0;
  }

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

  /* Mobile content area image constraint */
  .page-faq-deposit-withdrawal__content-area img,
  .page-faq-deposit-withdrawal__accordion-content img,
  .page-faq-deposit-withdrawal__cta-image {
    max-width: 100%;
    height: auto;
  }
}