.page-faq-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #0A192F; /* Deep Tech Blue */
  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 0%, #1A345B 100%); /* Darker gradient for hero */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq-deposit-withdrawal__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.page-faq-deposit-withdrawal__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.page-faq-deposit-withdrawal__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-faq-deposit-withdrawal__subtitle {
  font-size: 1.3em;
  color: #BBBBBB;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-faq-deposit-withdrawal__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-faq-deposit-withdrawal__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-faq-deposit-withdrawal__overview .page-faq-deposit-withdrawal__section-title {
  margin-bottom: 30px;
}

.page-faq-deposit-withdrawal__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}

.page-faq-deposit-withdrawal__text-content {
  flex: 1;
  color: #E0E0E0;
}

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

.page-faq-deposit-withdrawal__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-faq-deposit-withdrawal__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease-in-out;
}

.page-faq-deposit-withdrawal__image:hover {
  transform: translateY(-5px);
}

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

.page-faq-deposit-withdrawal__accordion-item {
  background-color: #1A2B47; /* Slightly lighter dark blue for accordion items */
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-faq-deposit-withdrawal__accordion-header {
  color: #FFD700; /* Gold for accordion headers */
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25em;
  font-weight: bold;
  background-color: #1A2B47;
  transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal__accordion-header:hover {
  background-color: #2A3F60;
}

.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;
  background-color: #0A192F; /* Main dark blue for content */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-faq-deposit-withdrawal__accordion-content p {
  margin-bottom: 10px;
  color: #CCCCCC;
  font-size: 1em;
}

.page-faq-deposit-withdrawal__accordion-content ol,
.page-faq-deposit-withdrawal__accordion-content ul {
  margin-left: 20px;
  margin-bottom: 10px;
  color: #CCCCCC;
}

.page-faq-deposit-withdrawal__accordion-content li {
  margin-bottom: 5px;
}

.page-faq-deposit-withdrawal__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Deep Tech 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.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-faq-deposit-withdrawal__button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-faq-deposit-withdrawal__button--secondary {
  background-color: #0A192F; /* Deep Tech Blue button */
  color: #FFD700; /* Gold text on dark button */
  border: 2px solid #FFD700;
  box-shadow: none;
  margin-left: 20px;
}

.page-faq-deposit-withdrawal__button--secondary:hover {
  background-color: #1A345B; /* Slightly lighter dark blue on hover */
  color: #FFD700;
  border-color: #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-faq-deposit-withdrawal__button--inline {
  display: block;
  margin: 40px auto 20px auto;
  text-align: center;
  max-width: 250px;
}

.page-faq-deposit-withdrawal__general-faq .page-faq-deposit-withdrawal__content-wrapper {
  flex-direction: row-reverse; /* Image on left, text on right */
}

.page-faq-deposit-withdrawal__general-faq .page-faq-deposit-withdrawal__image-wrapper--left {
  margin-right: 40px;
}

.page-faq-deposit-withdrawal__cta {
  text-align: center;
  padding: 80px 0;
  background-color: #1A2B47; /* Dark blue for CTA section */
  position: relative;
  overflow: hidden;
}

.page-faq-deposit-withdrawal__cta-description {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq-deposit-withdrawal__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq-deposit-withdrawal__title {
    font-size: 2.8em;
  }
  .page-faq-deposit-withdrawal__section-title {
    font-size: 2em;
  }
  .page-faq-deposit-withdrawal__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-faq-deposit-withdrawal__image-wrapper--left {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .page-faq-deposit-withdrawal__accordion-header {
    font-size: 1.1em;
  }
  .page-faq-deposit-withdrawal__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-faq-deposit-withdrawal__hero {
    padding: 60px 0;
  }
  .page-faq-deposit-withdrawal__title {
    font-size: 2.2em;
  }
  .page-faq-deposit-withdrawal__subtitle {
    font-size: 1.1em;
  }
  .page-faq-deposit-withdrawal__section-title {
    font-size: 1.8em;
  }
  .page-faq-deposit-withdrawal__section {
    padding: 40px 0;
  }
  .page-faq-deposit-withdrawal__accordion-header {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-faq-deposit-withdrawal__accordion-content.active {
    padding: 15px 20px;
  }
  .page-faq-deposit-withdrawal__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-faq-deposit-withdrawal__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-faq-deposit-withdrawal__button--secondary {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .page-faq-deposit-withdrawal__title {
    font-size: 1.8em;
  }
  .page-faq-deposit-withdrawal__section-title {
    font-size: 1.5em;
  }
  .page-faq-deposit-withdrawal__text-content p {
    font-size: 0.95em;
  }
  .page-faq-deposit-withdrawal__button {
    width: 100%;
    max-width: 250px;
  }
}