.page-deposit-withdrawal-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-deposit-withdrawal-troubleshooting__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4750 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-deposit-withdrawal-troubleshooting__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:hero:faq,support,deposit_withdrawal,nohu78]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-deposit-withdrawal-troubleshooting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

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

.page-deposit-withdrawal-troubleshooting__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-deposit-withdrawal-troubleshooting__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

.page-deposit-withdrawal-troubleshooting__content-section {
  padding: 60px 0;
  background-color: #fcfcfc;
}

.page-deposit-withdrawal-troubleshooting__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-deposit-withdrawal-troubleshooting__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #1A202C;
}

.page-deposit-withdrawal-troubleshooting__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-deposit-withdrawal-troubleshooting__section-title {
  font-size: 2em;
  color: #1A202C;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  display: inline-block;
}

.page-deposit-withdrawal-troubleshooting__text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-troubleshooting__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-troubleshooting__question {
  font-size: 1.3em;
  color: #1A202C;
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.page-deposit-withdrawal-troubleshooting__question::before {
  content: 'Q.';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-deposit-withdrawal-troubleshooting__answer {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-deposit-withdrawal-troubleshooting__answer ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
}

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

.page-deposit-withdrawal-troubleshooting__cta-section {
  background-color: #1A202C;
  color: #ffffff;
  padding: 60px 40px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-troubleshooting__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-deposit-withdrawal-troubleshooting__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-deposit-withdrawal-troubleshooting__text-link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-deposit-withdrawal-troubleshooting__text-link:hover {
  color: #e6c200;
}

.page-deposit-withdrawal-troubleshooting__btn--secondary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-deposit-withdrawal-troubleshooting__btn--secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

  .page-deposit-withdrawal-troubleshooting__hero-subtitle {
    font-size: 1.1em;
  }

  .page-deposit-withdrawal-troubleshooting__section-title {
    font-size: 1.7em;
  }

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

  .page-deposit-withdrawal-troubleshooting__faq-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .page-deposit-withdrawal-troubleshooting__hero-section {
    padding: 60px 0;
  }

  .page-deposit-withdrawal-troubleshooting__content-section {
    padding: 40px 0;
  }

  .page-deposit-withdrawal-troubleshooting__faq-item {
    padding: 20px;
  }

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

  .page-deposit-withdrawal-troubleshooting__cta-section {
    padding: 40px 20px;
  }
}