/* style/deposit-withdrawal-faq.css */
.page-deposit-withdrawal-faq {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text on dark background */
  background-color: #1A1A2E; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-deposit-withdrawal-faq__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-deposit-withdrawal-faq__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-deposit-withdrawal-faq__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.page-deposit-withdrawal-faq__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #CCCCCC;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-deposit-withdrawal-faq__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

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

.page-deposit-withdrawal-faq__button--primary {
  background-color: #E9B824; /* Accent gold */
  color: #1A1A2E; /* Dark blue text on gold */
}

.page-deposit-withdrawal-faq__button--primary:hover {
  background-color: #f7d14d;
  transform: translateY(-3px);
}

.page-deposit-withdrawal-faq__button--secondary {
  background-color: transparent;
  color: #E9B824; /* Gold text */
  border: 2px solid #E9B824;
}

.page-deposit-withdrawal-faq__button--secondary:hover {
  background-color: #E9B824;
  color: #1A1A2E;
  transform: translateY(-3px);
}

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

.page-deposit-withdrawal-faq__section:last-of-type {
  border-bottom: none;
}

.page-deposit-withdrawal-faq__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}

.page-deposit-withdrawal-faq__section-title .highlight {
  color: #E9B824;
}

.page-deposit-withdrawal-faq__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E9B824;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-deposit-withdrawal-faq__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-deposit-withdrawal-faq__faq-item {
  background-color: #2A2A4A;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-deposit-withdrawal-faq__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-faq__faq-question {
  font-size: 1.4em;
  color: #E9B824; /* Gold question text */
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-deposit-withdrawal-faq__faq-question::after {
  content: '+';
  font-size: 1.2em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

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

.page-deposit-withdrawal-faq__faq-answer {
  font-size: 1em;
  color: #CCCCCC;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
  padding-bottom: 0;
}

.page-deposit-withdrawal-faq__faq-answer.active {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 15px;
  padding-bottom: 5px;
}

.page-deposit-withdrawal-faq__faq-answer p {
  margin-bottom: 1em;
}

.page-deposit-withdrawal-faq__faq-answer ul,
.page-deposit-withdrawal-faq__faq-answer ol {
  margin-bottom: 1em;
  padding-left: 20px;
}

.page-deposit-withdrawal-faq__faq-answer li {
  margin-bottom: 0.5em;
}

.page-deposit-withdrawal-faq__text-link {
  color: #E9B824;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-deposit-withdrawal-faq__text-link:hover {
  color: #f7d14d;
  text-decoration: underline;
}

.page-deposit-withdrawal-faq__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-faq__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-deposit-withdrawal-faq__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-faq__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-faq__cta-bottom {
  background: linear-gradient(45deg, #E9B824 0%, #f7d14d 100%);
  padding: 80px 0;
  text-align: center;
  color: #1A1A2E; /* Dark blue text on gold background */
}

.page-deposit-withdrawal-faq__cta-bottom .page-deposit-withdrawal-faq__section-title {
  color: #1A1A2E;
}

.page-deposit-withdrawal-faq__cta-bottom .page-deposit-withdrawal-faq__section-title::after {
  background-color: #1A1A2E;
}

.page-deposit-withdrawal-faq__cta-bottom .highlight {
  color: #1A1A2E;
}

.page-deposit-withdrawal-faq__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-deposit-withdrawal-faq__cta-bottom .page-deposit-withdrawal-faq__button--primary {
  background-color: #1A1A2E;
  color: #E9B824;
}

.page-deposit-withdrawal-faq__cta-bottom .page-deposit-withdrawal-faq__button--primary:hover {
  background-color: #3a3a5e;
  color: #f7d14d;
}

.page-deposit-withdrawal-faq__cta-bottom .page-deposit-withdrawal-faq__button--secondary {
  background-color: transparent;
  color: #1A1A2E;
  border: 2px solid #1A1A2E;
}

.page-deposit-withdrawal-faq__cta-bottom .page-deposit-withdrawal-faq__button--secondary:hover {
  background-color: #1A1A2E;
  color: #E9B824;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-deposit-withdrawal-faq__title {
    font-size: 2.5em;
  }

  .page-deposit-withdrawal-faq__subtitle {
    font-size: 1em;
  }

  .page-deposit-withdrawal-faq__section-title {
    font-size: 2em;
  }

  .page-deposit-withdrawal-faq__faq-question {
    font-size: 1.2em;
  }

  .page-deposit-withdrawal-faq__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-deposit-withdrawal-faq__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-deposit-withdrawal-faq__image--left,
  .page-deposit-withdrawal-faq__image--right {
    float: none;
    margin: 30px auto;
  }
}

@media (max-width: 480px) {
  .page-deposit-withdrawal-faq__hero,
  .page-deposit-withdrawal-faq__section,
  .page-deposit-withdrawal-faq__cta-bottom {
    padding: 50px 0;
  }

  .page-deposit-withdrawal-faq__title {
    font-size: 2em;
  }

  .page-deposit-withdrawal-faq__section-title {
    font-size: 1.8em;
  }

  .page-deposit-withdrawal-faq__faq-question {
    font-size: 1.1em;
  }

  .page-deposit-withdrawal-faq__container {
    padding: 0 15px;
  }
}