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

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

.page-deposit-withdrawal-guide-faq__hero {
  background: linear-gradient(135deg, #0A192F, #1A3A60); /* Darker blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-deposit-withdrawal-guide-faq__title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-deposit-withdrawal-guide-faq__subtitle {
  font-size: 1.3em;
  color: #B0C4DE; /* Lighter blue for subtitle */
  margin-bottom: 40px;
}

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

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

.page-deposit-withdrawal-guide-faq__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Deep blue text on gold */
}

.page-deposit-withdrawal-guide-faq__btn--primary:hover {
  background-color: #E0B800; /* Darker gold on hover */
  transform: translateY(-3px);
}

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

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

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

.page-deposit-withdrawal-guide-faq__section:nth-of-type(even) {
  background-color: #0F2A4D; /* Slightly lighter dark blue for alternating sections */
}

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

.page-deposit-withdrawal-guide-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-guide-faq__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #B0C4DE;
}

.page-deposit-withdrawal-guide-faq__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-deposit-withdrawal-guide-faq__content-block:nth-child(odd) {
  flex-direction: row-reverse; /* Alternate image and text layout */
}

.page-deposit-withdrawal-guide-faq__content-block > *:first-child,
.page-deposit-withdrawal-guide-faq__content-block > *:last-child {
  flex: 1;
  min-width: 300px;
}

.page-deposit-withdrawal-guide-faq__content-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-bottom: 25px;
  text-align: left;
  width: 100%;
}

.page-deposit-withdrawal-guide-faq__text {
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-deposit-withdrawal-guide-faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.page-deposit-withdrawal-guide-faq__list li {
  background-color: #1A3A60; /* Darker blue for list items */
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.05em;
  color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-deposit-withdrawal-guide-faq__icon {
  font-family: 'Font Awesome 5 Free'; /* Assuming Font Awesome is used or similar icon font */
  font-weight: 900;
  color: #FFD700;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-deposit-withdrawal-guide-faq__icon--bank::before { content: '\f19c'; } /* Example: bank icon */
.page-deposit-withdrawal-guide-faq__icon--ewallet::before { content: '\f555'; } /* Example: wallet icon */
.page-deposit-withdrawal-guide-faq__icon--crypto::before { content: '\f15a'; } /* Example: bitcoin icon */
.page-deposit-withdrawal-guide-faq__icon--encryption::before { content: '\f023'; } /* Example: lock icon */
.page-deposit-withdrawal-guide-faq__icon--data-protection::before { content: '\f51e'; } /* Example: shield icon */
.page-deposit-withdrawal-guide-faq__icon--responsible-gambling::before { content: '\f05a'; } /* Example: info circle icon */

.page-deposit-withdrawal-guide-faq__numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
  flex: 1;
}

.page-deposit-withdrawal-guide-faq__numbered-list li {
  background-color: #1A3A60;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  position: relative;
  font-size: 1.05em;
  color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding-left: 50px;
}

.page-deposit-withdrawal-guide-faq__numbered-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A192F;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-deposit-withdrawal-guide-faq__image {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-deposit-withdrawal-guide-faq__image--left {
  order: -1; /* For alternating layout */
}

.page-deposit-withdrawal-guide-faq__image--full-width {
  max-width: 100%;
  margin-top: 40px;
}

.page-deposit-withdrawal-guide-faq__faq-block {
  display: block;
}

.page-deposit-withdrawal-guide-faq__faq-item {
  background-color: #1A3A60;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-guide-faq__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-top: 0;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-deposit-withdrawal-guide-faq__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-deposit-withdrawal-guide-faq__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-deposit-withdrawal-guide-faq__faq-answer {
  font-size: 1.05em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  margin-bottom: 0;
}

.page-deposit-withdrawal-guide-faq__faq-answer.active {
  max-height: 500px; /* Adjust based on expected content length */
  opacity: 1;
  margin-bottom: 15px;
}

.page-deposit-withdrawal-guide-faq__inline-link {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-deposit-withdrawal-guide-faq__inline-link:hover {
  color: #E0B800; /* Darker gold on hover */
  text-decoration: underline;
}

.page-deposit-withdrawal-guide-faq__list--security li {
  border-left: 5px solid #00BFFF; /* Sky blue for security section accents */
}

.page-deposit-withdrawal-guide-faq__list--security .page-deposit-withdrawal-guide-faq__icon {
  color: #00BFFF; /* Sky blue for security icons */
}

.page-deposit-withdrawal-guide-faq__cta-content {
  text-align: center;
  background-color: #1A3A60;
  padding: 50px;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-guide-faq__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-guide-faq__cta-description {
  font-size: 1.2em;
  color: #B0C4DE;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-deposit-withdrawal-guide-faq__cta-small-text {
  font-size: 0.95em;
  color: #B0C4DE;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-deposit-withdrawal-guide-faq__title {
    font-size: 2.5em;
  }
  .page-deposit-withdrawal-guide-faq__section-title {
    font-size: 2em;
  }
  .page-deposit-withdrawal-guide-faq__content-block {
    flex-direction: column;
    text-align: center;
  }
  .page-deposit-withdrawal-guide-faq__content-block:nth-child(odd) {
    flex-direction: column; /* Reset order for smaller screens */
  }
  .page-deposit-withdrawal-guide-faq__image {
    max-width: 80%;
    margin-bottom: 30px;
  }
  .page-deposit-withdrawal-guide-faq__content-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-deposit-withdrawal-guide-faq__hero {
    padding: 80px 0;
  }
  .page-deposit-withdrawal-guide-faq__title {
    font-size: 2em;
  }
  .page-deposit-withdrawal-guide-faq__subtitle {
    font-size: 1.1em;
  }
  .page-deposit-withdrawal-guide-faq__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-deposit-withdrawal-guide-faq__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-deposit-withdrawal-guide-faq__section {
    padding: 40px 0;
  }
  .page-deposit-withdrawal-guide-faq__section-title {
    font-size: 1.8em;
  }
  .page-deposit-withdrawal-guide-faq__description {
    font-size: 1em;
  }
  .page-deposit-withdrawal-guide-faq__image {
    max-width: 90%;
  }
  .page-deposit-withdrawal-guide-faq__faq-question {
    font-size: 1.1em;
  }
  .page-deposit-withdrawal-guide-faq__cta-title {
    font-size: 2em;
  }
  .page-deposit-withdrawal-guide-faq__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-deposit-withdrawal-guide-faq__hero {
    padding: 60px 0;
  }
  .page-deposit-withdrawal-guide-faq__title {
    font-size: 1.8em;
  }
  .page-deposit-withdrawal-guide-faq__subtitle {
    font-size: 1em;
  }
  .page-deposit-withdrawal-guide-faq__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-deposit-withdrawal-guide-faq__section-title {
    font-size: 1.5em;
  }
  .page-deposit-withdrawal-guide-faq__list li,
  .page-deposit-withdrawal-guide-faq__numbered-list li,
  .page-deposit-withdrawal-guide-faq__faq-answer {
    font-size: 0.95em;
  }
  .page-deposit-withdrawal-guide-faq__faq-question {
    font-size: 1em;
  }
  .page-deposit-withdrawal-guide-faq__cta-title {
    font-size: 1.8em;
  }
}