.page-deposit-withdrawal-faq {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-deposit-withdrawal-faq__hero-section {
  background-color: #1A1A2E; /* Primary brand color */
  color: #ffffff;
  padding: 80px 20px 40px; /* Adjusted padding for hero content */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-deposit-withdrawal-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-deposit-withdrawal-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Secondary brand color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-deposit-withdrawal-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

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

.page-deposit-withdrawal-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-faq__introduction-section,
.page-deposit-withdrawal-faq__faq-section,
.page-deposit-withdrawal-faq__deposit-section,
.page-deposit-withdrawal-faq__withdrawal-section,
.page-deposit-withdrawal-faq__security-section,
.page-deposit-withdrawal-faq__troubleshooting-section,
.page-deposit-withdrawal-faq__contact-support-section,
.page-deposit-withdrawal-faq__cta-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-deposit-withdrawal-faq__faq-section,
.page-deposit-withdrawal-faq__deposit-section,
.page-deposit-withdrawal-faq__withdrawal-section,
.page-deposit-withdrawal-faq__troubleshooting-section {
  background-color: #f9f9f9;
}

.page-deposit-withdrawal-faq__text-content {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-deposit-withdrawal-faq__text-content a {
  color: #1A1A2E;
  text-decoration: underline;
  font-weight: bold;
}

.page-deposit-withdrawal-faq__text-content a:hover {
  color: #FFD700;
}

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

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

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

.page-deposit-withdrawal-faq__faq-question {
  font-size: 1.4em;
  color: #1A1A2E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-deposit-withdrawal-faq__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-deposit-withdrawal-faq__faq-answer a {
  color: #1A1A2E;
  font-weight: bold;
  text-decoration: underline;
}

.page-deposit-withdrawal-faq__faq-answer a:hover {
  color: #FFD700;
}

.page-deposit-withdrawal-faq__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

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

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

.page-deposit-withdrawal-faq__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-deposit-withdrawal-faq__button--tertiary {
  background-color: #1A1A2E;
  color: #ffffff;
  border: 2px solid #1A1A2E;
}

.page-deposit-withdrawal-faq__button--tertiary:hover {
  background-color: #0d0d1a;
  border-color: #0d0d1a;
  transform: translateY(-2px);
}

.page-deposit-withdrawal-faq__security-image,
.page-deposit-withdrawal-faq__support-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-faq__contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-deposit-withdrawal-faq__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-deposit-withdrawal-faq__hero-title {
    font-size: 2.8em;
  }
  .page-deposit-withdrawal-faq__section-title {
    font-size: 2em;
  }
  .page-deposit-withdrawal-faq__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-deposit-withdrawal-faq__hero-section {
    padding: 60px 15px 30px;
  }
  .page-deposit-withdrawal-faq__hero-title {
    font-size: 2.2em;
  }
  .page-deposit-withdrawal-faq__hero-description {
    font-size: 1em;
  }
  .page-deposit-withdrawal-faq__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-deposit-withdrawal-faq__button {
    width: 100%;
    max-width: 300px;
  }
  .page-deposit-withdrawal-faq__container {
    padding: 0 15px;
  }
  .page-deposit-withdrawal-faq__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-deposit-withdrawal-faq__introduction-section,
  .page-deposit-withdrawal-faq__faq-section,
  .page-deposit-withdrawal-faq__deposit-section,
  .page-deposit-withdrawal-faq__withdrawal-section,
  .page-deposit-withdrawal-faq__security-section,
  .page-deposit-withdrawal-faq__troubleshooting-section,
  .page-deposit-withdrawal-faq__contact-support-section,
  .page-deposit-withdrawal-faq__cta-section {
    padding: 40px 0;
  }
  .page-deposit-withdrawal-faq__text-content {
    font-size: 0.95em;
  }
  .page-deposit-withdrawal-faq__faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-deposit-withdrawal-faq__faq-item {
    padding: 20px;
  }
  .page-deposit-withdrawal-faq__faq-question {
    font-size: 1.1em;
  }
  .page-deposit-withdrawal-faq__security-image,
  .page-deposit-withdrawal-faq__support-image {
    margin: 30px auto;
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
  }
  .page-deposit-withdrawal-faq__contact-methods,
  .page-deposit-withdrawal-faq__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-deposit-withdrawal-faq img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-deposit-withdrawal-faq__hero-title {
    font-size: 1.8em;
  }
  .page-deposit-withdrawal-faq__section-title {
    font-size: 1.5em;
  }
  .page-deposit-withdrawal-faq__button {
    font-size: 1em;
    padding: 12px 25px;
  }
}