/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Deep blue primary background */
}

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2A3B5E 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero titles */
}

.page-faq__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0; /* Lighter gray for subtitle */
}

.page-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-faq__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-faq__btn--primary {
  background-color: #FFD700; /* Gold for primary actions */
  color: #0A192F; /* Deep blue for text on gold */
}

.page-faq__btn--primary:hover {
  background-color: #E6C200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold for secondary actions */
  border: 2px solid #FFD700;
}

.page-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-faq__btn--inline {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-faq__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-faq__btn--xl {
  padding: 20px 40px;
  font-size: 1.4em;
  min-width: 250px;
}

.page-faq__section {
  padding: 60px 0;
}

.page-faq__section--general {
  background-color: #0A192F;
}

.page-faq__section--account {
  background-color: #12243C; /* Slightly lighter dark blue */
}

.page-faq__section--deposit-withdraw {
  background-color: #0A192F;
}

.page-faq__section--app-promo {
  background-color: #12243C;
  text-align: center;
  padding: 80px 0;
}

.page-faq__section--support {
  background-color: #0A192F;
}

.page-faq__call-to-action {
  background-color: #FFD700; /* Gold background for strong CTA */
  padding: 80px 0;
  text-align: center;
  color: #0A192F; /* Deep blue text on gold */
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq__accordion {
  margin-top: 30px;
}

.page-faq__accordion-item {
  background-color: #1A2E4B; /* Darker blue for accordion items */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__accordion-question {
  font-size: 1.5em;
  padding: 20px 30px;
  cursor: pointer;
  background-color: #1A2E4B; /* Darker blue for question header */
  color: #FFD700; /* Gold for question text */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-faq__accordion-question::after {
  content: '+';
  font-size: 1.8em;
  font-weight: lighter;
  transition: transform 0.3s ease;
}

.page-faq__accordion-question.active::after {
  content: '-';
  transform: rotate(0deg); /* No rotation for minus */
}

.page-faq__accordion-answer {
  padding: 0 30px;
  background-color: #0A192F; /* Deep blue for answer content */
  color: #E0E0E0; /* Lighter gray for answer text */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__accordion-answer.active {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 30px;
}

.page-faq__accordion-answer p {
  margin-bottom: 15px;
}

.page-faq__app-promo-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-faq__app-promo-text {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__app-image {
  max-width: 300px;
  height: auto;
  margin-bottom: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-faq__contact-text {
  text-align: center;
  font-size: 1.1em;
  color: #E0E0E0;
  margin-top: 40px;
}

.page-faq__contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-faq__contact-link:hover {
  color: #E6C200;
  text-decoration: underline;
}

.page-faq__call-to-action-title {
  font-size: 3em;
  color: #0A192F;
  margin-bottom: 20px;
}

.page-faq__call-to-action-description {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 40px;
}

.page-faq__footer-note {
  margin-top: 30px;
  font-size: 1em;
  color: #333;
}

.page-faq__footer-link {
  color: #0A192F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-faq__footer-link:hover {
  color: #2A3B5E;
  text-decoration: underline;
}

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

  .page-faq__subtitle {
    font-size: 1.1em;
  }

  .page-faq__section-title {
    font-size: 2em;
  }

  .page-faq__accordion-question {
    font-size: 1.3em;
    padding: 15px 20px;
  }

  .page-faq__accordion-answer {
    padding: 15px 20px;
  }

  .page-faq__app-promo-title {
    font-size: 2em;
  }

  .page-faq__app-promo-text {
    font-size: 1em;
  }

  .page-faq__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-faq__btn--large, .page-faq__btn--xl {
    padding: 15px 30px;
    font-size: 1.1em;
    min-width: unset;
  }

  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-faq__title {
    font-size: 2em;
  }

  .page-faq__subtitle {
    font-size: 0.9em;
  }

  .page-faq__section-title {
    font-size: 1.8em;
  }

  .page-faq__accordion-question {
    font-size: 1.1em;
    padding: 12px 15px;
  }

  .page-faq__accordion-answer {
    padding: 12px 15px;
  }

  .page-faq__app-promo-title {
    font-size: 1.8em;
  }

  .page-faq__app-image {
    max-width: 250px;
  }

  .page-faq__btn {
    width: 100%;
  }
}