.page-faq-deposit-withdrawal {
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--background);
}

.page-faq-deposit-withdrawal__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
}

.page-faq-deposit-withdrawal__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure wrapper handles large images */
  margin-bottom: 30px;
}

.page-faq-deposit-withdrawal__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-faq-deposit-withdrawal__hero-content {
  max-width: 900px;
  text-align: center;
  color: var(--text-main);
  padding: 0 15px;
}

.page-faq-deposit-withdrawal__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold);
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-faq-deposit-withdrawal__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-faq-deposit-withdrawal__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-faq-deposit-withdrawal__btn-primary,
.page-faq-deposit-withdrawal__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-faq-deposit-withdrawal__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-faq-deposit-withdrawal__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow);
}

.page-faq-deposit-withdrawal__btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--deep-green);
}

.page-faq-deposit-withdrawal__btn-secondary:hover {
  background-color: var(--deep-green);
  color: #ffffff;
}

.page-faq-deposit-withdrawal__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-faq-deposit-withdrawal__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-faq-deposit-withdrawal__light-bg {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter variant for contrast */
  color: var(--text-main);
}

.page-faq-deposit-withdrawal__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--gold);
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

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

.page-faq-deposit-withdrawal__faq-item {
  background-color: var(--background);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-faq-deposit-withdrawal__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--divider);
}

.page-faq-deposit-withdrawal__faq-qtext {
  flex-grow: 1;
  margin-right: 10px;
}

.page-faq-deposit-withdrawal__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-item[open] .page-faq-deposit-withdrawal__faq-toggle {
  transform: rotate(45deg);
}

.page-faq-deposit-withdrawal__faq-answer {
  padding-top: 15px;
  font-size: 1em;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-faq-deposit-withdrawal__faq-answer p {
  margin-bottom: 10px;
}

.page-faq-deposit-withdrawal__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

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

.page-faq-deposit-withdrawal__tip-item {
  background-color: var(--background);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-deposit-withdrawal__tip-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-faq-deposit-withdrawal__tip-item p {
  font-size: 1em;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-faq-deposit-withdrawal__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--deep-green);
  color: #ffffff;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-faq-deposit-withdrawal__cta-section .page-faq-deposit-withdrawal__section-title {
  color: var(--gold);
  margin-bottom: 20px;
}

.page-faq-deposit-withdrawal__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-faq-deposit-withdrawal__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-faq-deposit-withdrawal__hero-content {
    padding: 0 10px;
  }

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

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

  .page-faq-deposit-withdrawal__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-faq-deposit-withdrawal__btn-primary,
  .page-faq-deposit-withdrawal__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-faq-deposit-withdrawal__content-area {
    padding: 40px 15px;
  }

  .page-faq-deposit-withdrawal__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-faq-deposit-withdrawal__faq-question {
    font-size: 1em;
  }

  .page-faq-deposit-withdrawal__faq-answer {
    font-size: 0.95em;
  }

  /* Mobile image responsiveness */
  .page-faq-deposit-withdrawal img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-faq-deposit-withdrawal__section,
  .page-faq-deposit-withdrawal__card,
  .page-faq-deposit-withdrawal__container,
  .page-faq-deposit-withdrawal__hero-section,
  .page-faq-deposit-withdrawal__content-area,
  .page-faq-deposit-withdrawal__cta-section,
  .page-faq-deposit-withdrawal__faq-item,
  .page-faq-deposit-withdrawal__tip-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-faq-deposit-withdrawal__video-section {
    padding-top: 10px !important;
  }
}

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

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