/* style/faq-deposit-withdrawal.css */
.page-faq-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Main dark blue background */
  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, #0A1931 0%, #1A3A6D 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-faq-deposit-withdrawal__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-faq-deposit-withdrawal__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-faq-deposit-withdrawal__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFC107; /* Auxiliary golden color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-faq-deposit-withdrawal__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-faq-deposit-withdrawal__hero-button {
  display: inline-block;
  background-color: #FFC107; /* Auxiliary golden color */
  color: #0A1931; /* Dark blue for text on golden button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-faq-deposit-withdrawal__hero-button:hover {
  background-color: #e6b000;
  transform: translateY(-3px);
}

.page-faq-deposit-withdrawal__introduction, 
.page-faq-deposit-withdrawal__faq-section, 
.page-faq-deposit-withdrawal__tips, 
.page-faq-deposit-withdrawal__conclusion {
  padding: 60px 0;
  background-color: #122543;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-faq-deposit-withdrawal__introduction {
  text-align: center;
}

.page-faq-deposit-withdrawal__section-title {
  font-size: 2.5em;
  color: #FFC107;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-faq-deposit-withdrawal__introduction p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #C0C0C0;
}

.page-faq-deposit-withdrawal__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-faq-deposit-withdrawal__faq-section ul,
.page-faq-deposit-withdrawal__faq-section ol {
  list-style-type: disc;
  margin-left: 25px;
  color: #E0E0E0;
}

.page-faq-deposit-withdrawal__faq-section ol {
  list-style-type: decimal;
}

.page-faq-deposit-withdrawal__faq-section li {
  margin-bottom: 10px;
}

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

.page-faq-deposit-withdrawal__accordion-item {
  background-color: #0A1931;
  border: 1px solid #FFC107;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-faq-deposit-withdrawal__accordion-header {
  color: #FFC107;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal__accordion-header:hover {
  background-color: #1a3a6d;
}

.page-faq-deposit-withdrawal__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.page-faq-deposit-withdrawal__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #C0C0C0;
}

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

.page-faq-deposit-withdrawal__accordion-content p {
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__accordion-content ul, 
.page-faq-deposit-withdrawal__accordion-content ol {
  margin-top: 10px;
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__inline-link {
  color: #FFC107;
  text-decoration: underline;
  font-weight: bold;
}

.page-faq-deposit-withdrawal__inline-link:hover {
  color: #e6b000;
}

.page-faq-deposit-withdrawal__cta-box {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid #FFC107;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-deposit-withdrawal__cta-box p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-faq-deposit-withdrawal__cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #0A1931;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-faq-deposit-withdrawal__cta-button:hover {
  background-color: #e6b000;
  transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__faq-section--withdrawal {
  background-color: #122543;
}

.page-faq-deposit-withdrawal__tips {
  background-color: #0A1931;
}

.page-faq-deposit-withdrawal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-faq-deposit-withdrawal__tip-item {
  background-color: #122543;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #1a3a6d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq-deposit-withdrawal__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-faq-deposit-withdrawal__tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFC107);
}

.page-faq-deposit-withdrawal__tip-item h3 {
  color: #FFC107;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__tip-item p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-faq-deposit-withdrawal__conclusion {
  text-align: center;
  background-color: #122543;
}

.page-faq-deposit-withdrawal__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-faq-deposit-withdrawal__conclusion-button {
  display: inline-block;
  background-color: #FFC107;
  color: #0A1931;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-faq-deposit-withdrawal__conclusion-button:hover {
  background-color: #e6b000;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .page-faq-deposit-withdrawal__hero-title {
    font-size: 2.5em;
  }

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

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

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

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

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

@media (max-width: 480px) {
  .page-faq-deposit-withdrawal__hero-title {
    font-size: 2em;
  }

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

  .page-faq-deposit-withdrawal__hero-button,
  .page-faq-deposit-withdrawal__cta-button,
  .page-faq-deposit-withdrawal__conclusion-button {
    padding: 10px 20px;
    font-size: 1em;
  }

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

  .page-faq-deposit-withdrawal__tip-item h3 {
    font-size: 1.2em;
  }
}