/* style/faq.css */
.page-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text */
  background-color: #0A192F; /* Dark blue background */
}

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A192F, #1A2A40);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700;
}

.page-faq__hero::before {
  content: '';
  background-image: url('[GALLERY:bg:abstract,geometric,dark_blue_gold]');
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 0;
}

.page-faq__hero > * {
  position: relative;
  z-index: 1;
}

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

.page-faq__subtitle {
  font-size: 1.2em;
  color: #FFFFFF; /* White for subtitle */
  max-width: 800px;
  margin: 0 auto;
}

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

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

.page-faq__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-faq__accordion {
  background-color: #1A2A40; /* Slightly lighter dark blue for accordion background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-faq__accordion-header {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  padding: 20px 30px;
  cursor: pointer;
  background-color: #1A2A40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  margin: 0;
}

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

.page-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

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

.page-faq__accordion-content p {
  padding-bottom: 20px;
  margin: 0;
  color: #E0E0E0;
}

.page-faq__accordion-header.active + .page-faq__accordion-content {
  max-height: 500px; /* Adjust as needed */
  padding-top: 20px;
}

.page-faq__related-faqs {
  background-color: #1A2A40;
  padding: 60px 0;
}

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

.page-faq__related-item {
  background-color: #0A192F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq__related-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-faq__item-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-faq__item-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-faq__item-title a:hover {
  color: #FFE56B;
}

.page-faq__item-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-faq__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-faq__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

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

.page-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-faq__cta {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
}

.page-faq__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-faq__cta-description {
  font-size: 1.3em;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-faq__cta-buttons .page-faq__btn {
  margin: 0 15px;
}

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

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

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

  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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

  .page-faq__related-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .page-faq__cta-buttons .page-faq__btn {
    margin: 0;
  }
}

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

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

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

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

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

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