/* style/faq-deposit-withdrawal.css */
.page-faq-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark gray for readability on light backgrounds */
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-faq-deposit-withdrawal__hero {
  background: linear-gradient(135deg, #003366 0%, #0a5a9c 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 20px;
  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, 204, 0, 0.1);
  border-radius: 50%;
  animation: page-faq-deposit-withdrawal__float 10s ease-in-out infinite alternate;
}

.page-faq-deposit-withdrawal__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 204, 0, 0.15);
  border-radius: 50%;
  animation: page-faq-deposit-withdrawal__float 12s ease-in-out infinite alternate-reverse;
}

@keyframes page-faq-deposit-withdrawal__float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 30px); }
}

.page-faq-deposit-withdrawal__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-faq-deposit-withdrawal__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFCC00; /* Gold for emphasis */
}

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

.page-faq-deposit-withdrawal__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold for CTA */
  color: #003366; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq-deposit-withdrawal__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__cta-button--secondary {
  background-color: #003366; /* Dark blue for secondary CTA */
  color: #ffffff;
  margin-left: 15px;
}

.page-faq-deposit-withdrawal__cta-button--secondary:hover {
  background-color: #002244; /* Darker blue on hover */
}

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

.page-faq-deposit-withdrawal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .page-faq-deposit-withdrawal__grid {
    grid-template-columns: 280px 1fr;
  }
}

.page-faq-deposit-withdrawal__sidebar {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: fit-content;
  position: sticky;
  top: 20px; /* Adjust based on header height */
}

.page-faq-deposit-withdrawal__sidebar-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 10px;
}

.page-faq-deposit-withdrawal__sidebar-nav {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-faq-deposit-withdrawal__sidebar-nav li {
  margin-bottom: 10px;
}

.page-faq-deposit-withdrawal__sidebar-nav a {
  text-decoration: none;
  color: #003366;
  font-weight: 500;
  display: block;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-faq-deposit-withdrawal__sidebar-nav a:hover,
.page-faq-deposit-withdrawal__sidebar-nav a.active {
  background-color: #FFCC00;
  color: #003366;
}

.page-faq-deposit-withdrawal__sidebar-promo {
  background-color: #fff8e1; /* Light yellow background */
  border: 1px solid #FFCC00;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.page-faq-deposit-withdrawal__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__sidebar-promo h3 {
  color: #003366;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-faq-deposit-withdrawal__sidebar-promo p {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-faq-deposit-withdrawal__promo-button {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal__promo-button:hover {
  background-color: #002244;
}

.page-faq-deposit-withdrawal__main-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-faq-deposit-withdrawal__section-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid #FFCC00;
}

.page-faq-deposit-withdrawal__faq-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-faq-deposit-withdrawal__faq-question {
  font-size: 1.25em;
  color: #003366;
  background-color: #f0f8ff; /* Light blue background for question */
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-question:hover {
  background-color: #e6f2ff;
}

.page-faq-deposit-withdrawal__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

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

.page-faq-deposit-withdrawal__faq-answer {
  padding: 20px 25px;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  display: none; /* Hidden by default, shown by JS */
}

.page-faq-deposit-withdrawal__faq-answer p {
  margin-bottom: 15px;
  color: #444444;
}

.page-faq-deposit-withdrawal__faq-answer ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__faq-answer li {
  margin-bottom: 8px;
  color: #444444;
}

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

.page-faq-deposit-withdrawal__inline-cta {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal__inline-cta:hover {
  background-color: #002244;
}

.page-faq-deposit-withdrawal__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background-color: #f0f8ff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.page-faq-deposit-withdrawal__cta-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__cta-bottom p {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

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

  .page-faq-deposit-withdrawal__hero-subtitle {
    font-size: 1em;
  }

  .page-faq-deposit-withdrawal__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-bottom: 15px;
  }

  .page-faq-deposit-withdrawal__cta-button--secondary {
    margin-left: 0;
  }

  .page-faq-deposit-withdrawal__grid {
    grid-template-columns: 1fr;
  }

  .page-faq-deposit-withdrawal__sidebar {
    position: static;
    top: auto;
    margin-bottom: 30px;
  }

  .page-faq-deposit-withdrawal__main-content {
    padding: 20px;
  }

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

  .page-faq-deposit-withdrawal__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-faq-deposit-withdrawal__faq-answer {
    padding: 15px 20px;
  }

  .page-faq-deposit-withdrawal__cta-bottom .page-faq-deposit-withdrawal__cta-button {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  .page-faq-deposit-withdrawal__cta-bottom .page-faq-deposit-withdrawal__cta-button--secondary {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-faq-deposit-withdrawal__hero-title {
    font-size: 1.8em;
  }
  .page-faq-deposit-withdrawal__hero-subtitle {
    font-size: 0.9em;
  }
  .page-faq-deposit-withdrawal__section-title {
    font-size: 1.5em;
  }
  .page-faq-deposit-withdrawal__faq-question {
    font-size: 1em;
  }
}