/* style/faq-payments-withdrawals.css */

/* Base styles for the page */
.page-faq-payments-withdrawals {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default light text for dark body background */
  background-color: #121212; /* Inherited from body, explicitly set for clarity */
  padding-top: 120px; /* Spacing for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-faq-payments-withdrawals {
    padding-top: 100px; /* Spacing for fixed header on mobile */
  }
}

.page-faq-payments-withdrawals__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-faq-payments-withdrawals__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #ffd700; /* Gold/Amber for titles */
}

.page-faq-payments-withdrawals__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

/* Buttons */
.page-faq-payments-withdrawals__btn-primary,
.page-faq-payments-withdrawals__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  border: 2px solid transparent; /* Default transparent border */
}

.page-faq-payments-withdrawals__btn-primary {
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
}

.page-faq-payments-withdrawals__btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-faq-payments-withdrawals__btn-secondary {
  background-color: transparent;
  color: #007bff;
  border-color: #007bff;
}

.page-faq-payments-withdrawals__btn-secondary:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* Sections */
.page-faq-payments-withdrawals__dark-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-faq-payments-withdrawals__light-bg {
  background-color: #2a2a2a;
  color: #f0f0f0;
}

/* Hero Banner */
.page-faq-payments-withdrawals__hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0d0d0d, #2a2a2a);
  border-bottom: 5px solid #007bff;
}

.page-faq-payments-withdrawals__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-faq-payments-withdrawals__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffd700; /* Gold/Amber for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-faq-payments-withdrawals__hero-description {
  font-size: 19px;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-faq-payments-withdrawals__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-faq-payments-withdrawals__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Intro Section */
.page-faq-payments-withdrawals__intro-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.page-faq-payments-withdrawals__faq-section {
  padding: 80px 0;
}

.page-faq-payments-withdrawals__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a2a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-payments-withdrawals__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #333333;
  border-bottom: 1px solid #444444;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-faq-payments-withdrawals__faq-question:hover {
  background: #444444;
}

.page-faq-payments-withdrawals__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-faq-payments-withdrawals__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #ffd700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-faq-payments-withdrawals__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background-color: #2a2a2a;
  color: #e0e0e0;
}

.page-faq-payments-withdrawals__faq-item.active .page-faq-payments-withdrawals__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 25px !important;
  opacity: 1;
}

.page-faq-payments-withdrawals__faq-item.active .page-faq-payments-withdrawals__faq-toggle {
  color: #007bff;
  transform: rotate(180deg);
}

/* Contact Section */
.page-faq-payments-withdrawals__contact-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq-payments-withdrawals__contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Call to Action Section */
.page-faq-payments-withdrawals__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
}

.page-faq-payments-withdrawals__cta-section .page-faq-payments-withdrawals__section-title {
  color: #ffffff;
}

.page-faq-payments-withdrawals__cta-section .page-faq-payments-withdrawals__paragraph {
  color: #e0e0e0;
}

.page-faq-payments-withdrawals__cta-section .page-faq-payments-withdrawals__btn-primary {
  background-color: #ffd700;
  border-color: #ffd700;
  color: #1a1a1a;
}

.page-faq-payments-withdrawals__cta-section .page-faq-payments-withdrawals__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq-payments-withdrawals__main-title {
    font-size: 42px;
  }
  .page-faq-payments-withdrawals__section-title {
    font-size: 32px;
  }
  .page-faq-payments-withdrawals__hero-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-faq-payments-withdrawals__hero-banner {
    padding: 60px 15px;
  }
  .page-faq-payments-withdrawals__main-title {
    font-size: 36px;
  }
  .page-faq-payments-withdrawals__hero-description {
    font-size: 16px;
  }
  .page-faq-payments-withdrawals__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-faq-payments-withdrawals__paragraph {
    font-size: 16px;
  }
  .page-faq-payments-withdrawals__intro-section,
  .page-faq-payments-withdrawals__faq-section,
  .page-faq-payments-withdrawals__contact-section,
  .page-faq-payments-withdrawals__cta-section {
    padding: 60px 0;
  }
  .page-faq-payments-withdrawals__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-faq-payments-withdrawals__hero-image-wrapper {
    margin-top: 30px;
  }
  .page-faq-payments-withdrawals__faq-question {
    padding: 15px 20px;
  }
  .page-faq-payments-withdrawals__faq-question h3 {
    font-size: 16px;
  }
  .page-faq-payments-withdrawals__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }
  .page-faq-payments-withdrawals__faq-answer {
    padding: 0 20px;
  }
  .page-faq-payments-withdrawals__faq-item.active .page-faq-payments-withdrawals__faq-answer {
    padding: 20px !important;
  }
  .page-faq-payments-withdrawals__contact-methods {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq-payments-withdrawals__btn-primary,
  .page-faq-payments-withdrawals__btn-secondary {
    padding: 12px 25px;
    font-size: 15px;
    width: 100%;
  }
  /* Ensure all images are responsive and don't cause horizontal scroll */
  .page-faq-payments-withdrawals img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-faq-payments-withdrawals__main-title {
    font-size: 30px;
  }
  .page-faq-payments-withdrawals__section-title {
    font-size: 24px;
  }
  .page-faq-payments-withdrawals__hero-description {
    font-size: 15px;
  }
  .page-faq-payments-withdrawals__paragraph {
    font-size: 15px;
  }
  .page-faq-payments-withdrawals__faq-question h3 {
    font-size: 15px;
  }
  .page-faq-payments-withdrawals__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
}