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

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A2463 0%, #304E85 100%);
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B505;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-faq__hero-btn {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-faq__hero-btn:hover {
  background-color: #F0C94B;
  transform: translateY(-2px);
}

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

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-faq__section--accordion {
  background-color: #F8F8F8;
}

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

.page-faq__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-faq__accordion {
  margin-top: 30px;
}

.page-faq__accordion-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

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

.page-faq__accordion-question {
  margin: 0;
  flex-grow: 1;
}

.page-faq__accordion-icon {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23E3B505" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5v14M5 12h14"></path></svg>');
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

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

.page-faq__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #FDFDFD;
  color: #444;
}

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

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

.page-faq__accordion-content p:last-child {
  margin-bottom: 0;
}

.page-faq__inline-btn {
  display: inline-block;
  background-color: #0A2463;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-faq__inline-btn:hover {
  background-color: #1A3E7B;
}

.page-faq__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #0A2463;
  color: #FFFFFF;
  border-radius: 10px;
}

.page-faq__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.page-faq__cta-btn {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-faq__cta-btn:hover {
  background-color: #F0C94B;
  transform: translateY(-3px);
}

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

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

  .page-faq__hero-subtitle {
    font-size: 1em;
  }

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

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

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

  .page-faq__cta-text {
    font-size: 1.2em;
  }

  .page-faq__cta-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

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

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

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

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

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

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

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

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

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

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