/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A2463 0%, #203A7C 100%); /* Deeper blue gradient */
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-faq__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-faq__hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.page-faq__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E3B505;
}

.page-faq__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #c0c0c0;
}

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

.page-faq__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
}

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

.page-faq__btn--outline {
  background-color: transparent;
  color: #E3B505;
  border: 2px solid #E3B505;
  margin-left: 15px;
}

.page-faq__btn--outline:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-faq__btn--secondary {
  background-color: #0A2463;
  color: #fff;
  padding: 8px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-faq__btn--secondary:hover {
  background-color: #1a3a7c;
  color: #E3B505;
}

.page-faq__hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

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

.page-faq__accordion-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

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

.page-faq__accordion-item {
  background-color: #f0f5f9;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-faq__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: #0A2463;
  color: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq__accordion-header:hover {
  background-color: #1a3a7c;
}

.page-faq__accordion-header h3 {
  margin: 0;
  color: #E3B505; /* Question text color */
}

.page-faq__accordion-icon {
  font-size: 1.8em;
  transition: transform 0.3s ease;
  color: #E3B505;
}

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

.page-faq__accordion-body {
  padding: 20px 25px;
  background-color: #ffffff;
  color: #333;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-faq__accordion-body p {
  margin-bottom: 15px;
  color: #555;
}

.page-faq__accordion-body strong {
  color: #0A2463;
}

.page-faq__img-body {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-faq__cta-section {
  background-color: #0A2463;
  color: #fff;
  padding: 70px 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: url('[GALLERY:bg:abstract_lines,digital,dark_gold]') no-repeat center center/cover;
  opacity: 0.05;
  z-index: 0;
}

.page-faq__cta-content {
  z-index: 1;
  position: relative;
}

.page-faq__cta-section .page-faq__section-title {
  color: #E3B505;
  margin-bottom: 20px;
}

.page-faq__cta-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #c0c0c0;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-faq__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .page-faq__hero-content {
    max-width: 100%;
  }

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

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

  .page-faq__hero-image {
    margin-top: 40px;
  }

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

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

  .page-faq__accordion-body {
    padding: 18px 20px;
  }

  .page-faq__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-faq__btn--outline {
    margin-left: 0;
    margin-top: 15px;
  }
}

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

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

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

  .page-faq__accordion-header h3 {
    font-size: 0.95em;
  }
}

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

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

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

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

  .page-faq__accordion-header {
    padding: 15px;
  }

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

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

  .page-faq__accordion-body {
    padding: 15px;
  }
}