/* style/faq-deposit-withdrawal.css */
.page-faq-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7f6;
}

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

.page-faq-deposit-withdrawal__hero {
  background: linear-gradient(135deg, #0A2E50 0%, #1a4a7a 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-faq-deposit-withdrawal__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-faq-deposit-withdrawal__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 10px;
  cursor: pointer;
}

.page-faq-deposit-withdrawal__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2E50; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

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

.page-faq-deposit-withdrawal__section-title {
  font-size: 2em;
  color: #0A2E50; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

.page-faq-deposit-withdrawal__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-faq-deposit-withdrawal__faq-question {
  display: block;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  color: #0A2E50; /* Dark blue */
  background-color: #eef2f5;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-question::marker, .page-faq-deposit-withdrawal__faq-question::-webkit-details-marker {
  display: none;
}

.page-faq-deposit-withdrawal__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-item[open] .page-faq-deposit-withdrawal__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

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

.page-faq-deposit-withdrawal__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
}

.page-faq-deposit-withdrawal__faq-answer p {
  margin-bottom: 10px;
}

.page-faq-deposit-withdrawal__faq-answer a {
  color: #0A2E50;
  text-decoration: underline;
}

.page-faq-deposit-withdrawal__faq-answer a:hover {
  color: #FFD700;
}

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

.page-faq-deposit-withdrawal__cta-section {
  background: #0A2E50; /* Dark blue background */
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq-deposit-withdrawal__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold */
}

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

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

.page-faq-deposit-withdrawal .highlight-text {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq-deposit-withdrawal__hero-title {
    font-size: 2em;
  }
  .page-faq-deposit-withdrawal__hero-subtitle,
  .page-faq-deposit-withdrawal__cta-text {
    font-size: 1em;
  }
  .page-faq-deposit-withdrawal__section-title,
  .page-faq-deposit-withdrawal__cta-title {
    font-size: 1.8em;
  }
  .page-faq-deposit-withdrawal__btn {
    padding: 10px 20px;
    margin: 5px;
  }
  .page-faq-deposit-withdrawal__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-faq-deposit-withdrawal__faq-question::after {
    right: 20px;
    font-size: 1.2em;
  }
  .page-faq-deposit-withdrawal__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-faq-deposit-withdrawal__hero {
    padding: 60px 0;
  }
  .page-faq-deposit-withdrawal__hero-title {
    font-size: 1.8em;
  }
  .page-faq-deposit-withdrawal__btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-faq-deposit-withdrawal__section-title,
  .page-faq-deposit-withdrawal__cta-title {
    font-size: 1.5em;
  }
}