/* style/faq.css */

.page-faq {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #0F1A3A; /* Dark background for overall page */
}

.page-faq__hero {
  position: relative;
  background: linear-gradient(135deg, #1A2B5B 0%, #0F1A3A 100%); /* Main color gradient */
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
}

.page-faq__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,gaming,lines,dark]'); /* Abstract gaming background */
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

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

.page-faq__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.2;
}

.page-faq__title .highlight {
  color: #FFD700; /* Accent color for highlight */
}

.page-faq__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #C0C0C0;
}

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

.page-faq__btn--primary {
  background-color: #FFD700; /* Accent color for primary button */
  color: #1A2B5B; /* Dark text on accent background */
}

.page-faq__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-faq__section {
  padding: 60px 20px;
  text-align: center;
}

.page-faq__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  margin-bottom: 50px;
  font-weight: bold;
}

.page-faq__accordion {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  background-color: #1A2B5B; /* Main color for accordion background */
  text-align: left;
}

.page-faq__accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq__accordion-item:last-child {
  border-bottom: none;
}

.page-faq__accordion-header {
  background-color: #1A2B5B; /* Main color */
  color: #FFFFFF;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover {
  background-color: #2F416F;
}

.page-faq__accordion-header.active {
  background-color: #2F416F;
  color: #FFD700;
}

.page-faq__accordion-question {
  margin: 0;
  color: inherit;
}

.page-faq__accordion-icon {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header.active .page-faq__accordion-icon {
  transform: rotate(45deg);
}

.page-faq__accordion-content {
  background-color: #2F416F; /* Slightly lighter dark color for content */
  color: #E0E0E0;
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__accordion-content p {
  padding: 20px 0;
  margin: 0;
}

.page-faq__accordion-content a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-faq__accordion-content a:hover {
  text-decoration: underline;
}

.page-faq__image-placeholder {
  margin-top: 60px;
}

.page-faq__img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__cta-section {
  background-color: #1A2B5B; /* Main color for CTA background */
  padding: 80px 20px;
}

.page-faq__cta-content {
  background-color: #0F1A3A; /* Darker background for inner CTA box */
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-faq__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Accent color for CTA title */
  margin-bottom: 20px;
}

.page-faq__cta-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B5B; /* Dark text on accent background */
  transform: translateY(-2px);
}

/* 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-header {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-faq__accordion-content {
    padding: 0 20px;
  }

  .page-faq__accordion-content p {
    padding: 15px 0;
  }

  .page-faq__cta-title {
    font-size: 2.2em;
  }

  .page-faq__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-faq__hero {
    padding: 80px 15px;
  }

  .page-faq__title {
    font-size: 2em;
  }

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

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

  .page-faq__section {
    padding: 40px 15px;
  }

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

  .page-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-faq__accordion-icon {
    font-size: 1.2em;
  }

  .page-faq__accordion-content p {
    font-size: 0.95em;
  }

  .page-faq__cta-section {
    padding: 60px 15px;
  }

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

  .page-faq__cta-description {
    font-size: 0.9em;
  }
}