.page-index-deposit-withdrawal {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #222222;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-index-deposit-withdrawal h1, .page-index-deposit-withdrawal h2, .page-index-deposit-withdrawal h3, .page-index-deposit-withdrawal h4, .page-index-deposit-withdrawal h5, .page-index-deposit-withdrawal h6 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-deposit-withdrawal h1 {
  font-size: 3.2em;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-deposit-withdrawal h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-index-deposit-withdrawal h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-index-deposit-withdrawal h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-deposit-withdrawal p {
  margin-bottom: 15px;
}

.page-index-deposit-withdrawal a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-deposit-withdrawal a:hover {
  color: var(--primary-color);
}

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

.page-index-deposit-withdrawal .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-deposit-withdrawal .cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-deposit-withdrawal .cta-button.large {
  font-size: 1.3em;
  padding: 18px 50px;
}

.page-index-deposit-withdrawal ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-index-deposit-withdrawal ol {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-index-deposit-withdrawal li {
  margin-bottom: 8px;
}

.page-index-deposit-withdrawal .content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.page-index-deposit-withdrawal .hero-section-deposit-withdrawal {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #333333 100%);
  padding: 80px 0;
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-deposit-withdrawal .hero-container-deposit-withdrawal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-deposit-withdrawal .hero-content-deposit-withdrawal {
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.page-index-deposit-withdrawal .hero-content-deposit-withdrawal p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-deposit-withdrawal .hero-image-deposit-withdrawal {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
}

.page-index-deposit-withdrawal .hero-image-deposit-withdrawal img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-index-deposit-withdrawal .section-overview, 
.page-index-deposit-withdrawal .section-deposit-guide, 
.page-index-deposit-withdrawal .section-withdrawal-guide, 
.page-index-deposit-withdrawal .section-troubleshooting, 
.page-index-deposit-withdrawal .section-why-choose, 
.page-index-deposit-withdrawal .section-faq, 
.page-index-deposit-withdrawal .section-cta-bottom {
  padding: 60px 0;
}

.page-index-deposit-withdrawal .section-overview,
.page-index-deposit-withdrawal .section-troubleshooting,
.page-index-deposit-withdrawal .section-cta-bottom {
  background-color: var(--bg-light);
}

.page-index-deposit-withdrawal .section-deposit-guide,
.page-index-deposit-withdrawal .section-withdrawal-guide,
.page-index-deposit-withdrawal .section-why-choose,
.page-index-deposit-withdrawal .section-faq {
  background-color: #ffffff;
}

/* FAQ Section */
.page-index-deposit-withdrawal .faq-list {
  margin-top: 30px;
}

.page-index-deposit-withdrawal .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.page-index-deposit-withdrawal .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-index-deposit-withdrawal .faq-question:hover {
  background: var(--bg-light);
}

.page-index-deposit-withdrawal .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-dark);
}

.page-index-deposit-withdrawal .faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-index-deposit-withdrawal .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-index-deposit-withdrawal .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 20px;
  background: var(--bg-light);
}

.page-index-deposit-withdrawal .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-deposit-withdrawal h1 {
    font-size: 2.8em;
  }
  .page-index-deposit-withdrawal h2 {
    font-size: 2em;
  }
  .page-index-deposit-withdrawal h3 {
    font-size: 1.5em;
  }
  .page-index-deposit-withdrawal .hero-container-deposit-withdrawal {
    flex-direction: column;
  }
  .page-index-deposit-withdrawal .hero-content-deposit-withdrawal, .page-index-deposit-withdrawal .hero-image-deposit-withdrawal {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-deposit-withdrawal h1 {
    font-size: 2.2em;
  }
  .page-index-deposit-withdrawal h2 {
    font-size: 1.8em;
  }
  .page-index-deposit-withdrawal h3 {
    font-size: 1.3em;
  }
  .page-index-deposit-withdrawal .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-deposit-withdrawal .cta-button.large {
    font-size: 1.1em;
    padding: 15px 40px;
  }
  .page-index-deposit-withdrawal .section-overview, 
  .page-index-deposit-withdrawal .section-deposit-guide, 
  .page-index-deposit-withdrawal .section-withdrawal-guide, 
  .page-index-deposit-withdrawal .section-troubleshooting, 
  .page-index-deposit-withdrawal .section-why-choose, 
  .page-index-deposit-withdrawal .section-faq, 
  .page-index-deposit-withdrawal .section-cta-bottom {
    padding: 40px 0;
  }
  .page-index-deposit-withdrawal .faq-question {
    padding: 12px 15px;
  }
  .page-index-deposit-withdrawal .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-deposit-withdrawal .faq-answer {
    padding: 0 15px;
  }
  .page-index-deposit-withdrawal .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-deposit-withdrawal h1 {
    font-size: 1.8em;
  }
  .page-index-deposit-withdrawal h2 {
    font-size: 1.5em;
  }
  .page-index-deposit-withdrawal h3 {
    font-size: 1.1em;
  }
  .page-index-deposit-withdrawal .container {
    padding: 0 15px;
  }
  .page-index-deposit-withdrawal .hero-section-deposit-withdrawal {
    padding: 60px 0;
  }
  .page-index-deposit-withdrawal .hero-content-deposit-withdrawal p {
    font-size: 1em;
  }
  .page-index-deposit-withdrawal .cta-button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-index-deposit-withdrawal .cta-button.large {
    width: 100%;
  }
}