/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for readability on dark background */
  background-color: #0A192F; /* Deep Midnight Blue */
  line-height: 1.6;
}

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

/* Hero Section */
.page-faq__hero {
  background-color: #0A192F;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-faq__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(255, 215, 0, 0.1));
  z-index: 1;
}

.page-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.page-faq__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
}

/* Sections */
.page-faq__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-faq__section:last-of-type {
  border-bottom: none;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

/* Accordion Styles */
.page-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-faq__accordion-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__accordion-header {
  display: block;
  padding: 20px 25px;
  font-size: 1.3em;
  font-weight: bold;
  color: #FFD700; /* Gold for questions */
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
  list-style: none; /* Remove default marker */
}

.page-faq__accordion-header::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit */
}

.page-faq__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-faq__accordion-item[open] .page-faq__accordion-header::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-faq__accordion-item[open] .page-faq__accordion-header {
  background-color: rgba(255, 215, 0, 0.1);
  color: #FFFFFF;
}

.page-faq__accordion-content {
  padding: 15px 25px 25px;
  font-size: 1.1em;
  color: #E0E0E0; /* Lighter white for body text */
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-faq__accordion-content ul,
.page-faq__accordion-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-faq__accordion-content li {
  margin-bottom: 8px;
}

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

.page-faq__text-link:hover {
  color: #FFF;
  text-decoration: underline;
}

.page-faq__image--inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-faq__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  margin: 10px 10px 10px 0;
}

.page-faq__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark Blue */
  border-color: #FFD700;
}

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

.page-faq__button--secondary {
  background-color: #0A192F; /* Dark Blue */
  color: #FFD700; /* Gold */
  border-color: #FFD700;
}

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

.page-faq__button--outline {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

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

/* Call to Action Section */
.page-faq__cta-section {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(255, 215, 0, 0.1));
  z-index: 1;
}

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

.page-faq__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-faq__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-faq__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) blur(2px);
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__hero {
    padding: 60px 0;
  }

  .page-faq__hero-title {
    font-size: 2.5em;
  }

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

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

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

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

  .page-faq__accordion-header::after {
    font-size: 1.2em;
    right: 20px;
  }

  .page-faq__accordion-content {
    font-size: 1em;
    padding: 10px 20px 20px;
  }

  .page-faq__button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px 8px 8px 0;
  }

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

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

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

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

  .page-faq__hero-description {
    font-size: 0.95em;
  }

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

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

  .page-faq__accordion-header::after {
    font-size: 1em;
    right: 15px;
  }

  .page-faq__accordion-content {
    font-size: 0.9em;
    padding: 10px 15px 15px;
  }

  .page-faq__button {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px 5px 5px 0;
  }

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

  .page-faq__cta-description {
    font-size: 0.9em;
  }
  .page-faq__hero-content .page-faq__button {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-faq__cta-content .page-faq__button {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
}