/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light text for dark background */
  background-color: #0A2239; /* Main background color */
}

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

/* Hero Section */
.page-faq__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3B5C 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #E0B44B;
}

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

.page-faq__hero-subtitle {
  font-size: 1.4em;
  color: #D4D4D4;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__cta-button {
  display: inline-block;
  background-color: #E0B44B; /* Gold button */
  color: #0A2239; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq__cta-button:hover {
  background-color: #F0C45B; /* Lighter gold on hover */
  transform: translateY(-3px);
}

/* Accordion Section */
.page-faq__accordion-section {
  padding: 60px 0;
  background-color: #0A2239;
}

.page-faq__section-title {
  font-size: 2.8em;
  color: #E0B44B;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__accordion-item {
  background-color: #1A3B5C; /* 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-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.3em;
  color: #E0B44B; /* Gold for question text */
  font-weight: bold;
  background-color: #1A3B5C;
  border-bottom: 1px solid rgba(224, 180, 75, 0.3);
  transition: background-color 0.3s ease;
}

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

.page-faq__accordion-icon {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #E0B44B;
}

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

.page-faq__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding: 0 25px;
  color: #D4D4D4;
  font-size: 1.1em;
  line-height: 1.6;
}

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

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

.page-faq__accordion-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

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

.page-faq__accordion-cta-button {
  display: inline-block;
  background-color: #E0B44B;
  color: #0A2239;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq__accordion-cta-button:hover {
  background-color: #F0C45B;
  transform: translateY(-2px);
}

/* Contact CTA Section */
.page-faq__contact-cta {
  background-color: #1A3B5C; /* Darker blue background */
  padding: 80px 0;
  text-align: center;
  border-top: 2px solid #E0B44B;
}

.page-faq__contact-title {
  font-size: 2.5em;
  color: #E0B44B;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-faq__contact-subtitle {
  font-size: 1.3em;
  color: #D4D4D4;
  margin-bottom: 40px;
}

.page-faq__cta-button--secondary {
  background-color: #0A2239;
  color: #E0B44B;
  border: 2px solid #E0B44B;
}

.page-faq__cta-button--secondary:hover {
  background-color: #E0B44B;
  color: #0A2239;
  transform: translateY(-3px);
}

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

  .page-faq__hero-subtitle,
  .page-faq__contact-subtitle {
    font-size: 1.1em;
  }

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

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

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

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

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

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

  .page-faq__hero-subtitle,
  .page-faq__contact-subtitle {
    font-size: 0.9em;
  }

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

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

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

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

  .page-faq__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}