/* style/faq-deposit-withdrawal.css */

/* Variables for consistency */
:root {
  --page-faq-deposit-withdrawal-primary-color: #FFD700; /* Gold */
  --page-faq-deposit-withdrawal-secondary-color: #8B0000; /* Burgundy Red */
  --page-faq-deposit-withdrawal-dark-text: #333;
  --page-faq-deposit-withdrawal-light-text: #FFF;
  --page-faq-deposit-withdrawal-bg-light: #f8f8f8;
  --page-faq-deposit-withdrawal-bg-dark: #2a0000; /* Darker variant of secondary for background */
  --page-faq-deposit-withdrawal-border-color: #e0e0e0;
}

.page-faq-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-faq-deposit-withdrawal-dark-text);
  background-color: var(--page-faq-deposit-withdrawal-bg-light);
}

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

.page-faq-deposit-withdrawal__hero {
  background: linear-gradient(135deg, var(--page-faq-deposit-withdrawal-primary-color), var(--page-faq-deposit-withdrawal-secondary-color));
  color: var(--page-faq-deposit-withdrawal-light-text);
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px; /* Ensures a decent height */
}

.page-faq-deposit-withdrawal__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-faq-deposit-withdrawal-light-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-deposit-withdrawal__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-faq-deposit-withdrawal__btn {
  display: inline-block;
  background-color: var(--page-faq-deposit-withdrawal-primary-color);
  color: var(--page-faq-deposit-withdrawal-secondary-color); /* Dark text on gold button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid var(--page-faq-deposit-withdrawal-primary-color);
}

.page-faq-deposit-withdrawal__btn:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  color: var(--page-faq-deposit-withdrawal-dark-text);
}

.page-faq-deposit-withdrawal__btn--primary {
  background-color: var(--page-faq-deposit-withdrawal-primary-color);
  color: var(--page-faq-deposit-withdrawal-secondary-color);
  border-color: var(--page-faq-deposit-withdrawal-primary-color);
}

.page-faq-deposit-withdrawal__btn--primary:hover {
  background-color: #e6b800;
  color: var(--page-faq-deposit-withdrawal-dark-text);
}

.page-faq-deposit-withdrawal__btn--secondary {
  background-color: var(--page-faq-deposit-withdrawal-secondary-color);
  color: var(--page-faq-deposit-withdrawal-light-text);
  border-color: var(--page-faq-deposit-withdrawal-secondary-color);
}

.page-faq-deposit-withdrawal__btn--secondary:hover {
  background-color: #6a0000; /* Slightly darker burgundy */
  color: var(--page-faq-deposit-withdrawal-light-text);
}

.page-faq-deposit-withdrawal__btn--outline {
  background-color: transparent;
  color: var(--page-faq-deposit-withdrawal-light-text);
  border: 2px solid var(--page-faq-deposit-withdrawal-light-text);
  margin-left: 15px;
}

.page-faq-deposit-withdrawal__btn--outline:hover {
  background-color: var(--page-faq-deposit-withdrawal-light-text);
  color: var(--page-faq-deposit-withdrawal-secondary-color);
}

.page-faq-deposit-withdrawal__content-section {
  padding: 60px 0;
  background-color: var(--page-faq-deposit-withdrawal-bg-light);
}

.page-faq-deposit-withdrawal__content-section--dark {
  background-color: var(--page-faq-deposit-withdrawal-bg-dark);
  color: var(--page-faq-deposit-withdrawal-light-text);
}

.page-faq-deposit-withdrawal__content-section--dark .page-faq-deposit-withdrawal__section-heading,
.page-faq-deposit-withdrawal__content-section--dark .page-faq-deposit-withdrawal__faq-question {
  color: var(--page-faq-deposit-withdrawal-primary-color);
}

.page-faq-deposit-withdrawal__section-heading {
  font-size: 2.2em;
  color: var(--page-faq-deposit-withdrawal-secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-faq-deposit-withdrawal__faq-item {
  background-color: #fff;
  border: 1px solid var(--page-faq-deposit-withdrawal-border-color);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-faq-deposit-withdrawal__content-section--dark .page-faq-deposit-withdrawal__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-faq-deposit-withdrawal__faq-question {
  font-size: 1.4em;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--page-faq-deposit-withdrawal-primary-color);
  color: var(--page-faq-deposit-withdrawal-secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-question:hover {
  background-color: #e6b800;
}

.page-faq-deposit-withdrawal__faq-question::after {
  content: '+';
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq-deposit-withdrawal__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: var(--page-faq-deposit-withdrawal-dark-text);
  background-color: #fff;
}

.page-faq-deposit-withdrawal__content-section--dark .page-faq-deposit-withdrawal__faq-answer {
  color: var(--page-faq-deposit-withdrawal-light-text);
  background-color: transparent;
}

.page-faq-deposit-withdrawal__faq-answer.open {
  max-height: 500px; /* Adjust as needed based on content */
  padding: 20px 25px;
}

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

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

.page-faq-deposit-withdrawal__link-inline {
  color: var(--page-faq-deposit-withdrawal-secondary-color);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-faq-deposit-withdrawal__link-inline:hover {
  color: var(--page-faq-deposit-withdrawal-primary-color);
}

.page-faq-deposit-withdrawal__content-section--dark .page-faq-deposit-withdrawal__link-inline {
  color: var(--page-faq-deposit-withdrawal-primary-color);
}

.page-faq-deposit-withdrawal__content-section--dark .page-faq-deposit-withdrawal__link-inline:hover {
  color: var(--page-faq-deposit-withdrawal-light-text);
}

.page-faq-deposit-withdrawal__troubleshooting-section {
  padding: 60px 0;
  background-color: var(--page-faq-deposit-withdrawal-bg-light);
}

.page-faq-deposit-withdrawal__cta-section {
  background: linear-gradient(90deg, var(--page-faq-deposit-withdrawal-secondary-color), #4d0000);
  color: var(--page-faq-deposit-withdrawal-light-text);
  padding: 80px 0;
  text-align: center;
}

.page-faq-deposit-withdrawal__cta-heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--page-faq-deposit-withdrawal-primary-color);
}

.page-faq-deposit-withdrawal__cta-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq-deposit-withdrawal__title {
    font-size: 2.2em;
  }

  .page-faq-deposit-withdrawal__subtitle,
  .page-faq-deposit-withdrawal__cta-text {
    font-size: 1em;
  }

  .page-faq-deposit-withdrawal__section-heading,
  .page-faq-deposit-withdrawal__cta-heading {
    font-size: 1.8em;
  }

  .page-faq-deposit-withdrawal__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }

  .page-faq-deposit-withdrawal__faq-answer {
    padding: 15px 20px;
  }

  .page-faq-deposit-withdrawal__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-faq-deposit-withdrawal__btn--outline {
    margin-left: 0;
    margin-top: 15px;
  }
}

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

  .page-faq-deposit-withdrawal__section-heading,
  .page-faq-deposit-withdrawal__cta-heading {
    font-size: 1.5em;
  }

  .page-faq-deposit-withdrawal__btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .page-faq-deposit-withdrawal__btn--outline {
    margin-top: 0;
  }
}