.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, #003366 0%, #004d99 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-faq__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 30px;
}

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

.page-faq__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-faq__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366;
  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;
  border: none;
  cursor: pointer;
}

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

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

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

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

.page-faq__section-title {
  font-size: 2.5em;
  color: #003366;
  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 {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-faq__accordion-item {
  border-bottom: 1px solid #eee;
}

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

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

.page-faq__accordion-header h3 {
  margin: 0;
  color: inherit; /* Ensure h3 inherits color from button */
}

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

.page-faq__accordion-icon {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon {
  transform: rotate(45deg);
}

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

.page-faq__accordion-content.active {
  max-height: 300px; /* Adjust based on expected content height */
  padding: 20px 25px;
}

.page-faq__accordion-content p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.1em;
}

.page-faq__inline-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-faq__inline-link:hover {
  color: #FFD700;
}

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

.page-faq__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-faq__cta-text {
  max-width: 800px;
}

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

.page-faq__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-faq__cta-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-faq__cta-image-wrapper {
  max-width: 400px;
  margin-top: 20px;
}

.page-faq__cta-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-faq__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #FFD700;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: page-faq__pulse 2s infinite;
}

.page-faq__floating-promo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  text-decoration: none;
  color: #003366;
  font-weight: bold;
  font-size: 1.1em;
}

.page-faq__floating-promo-icon {
  width: 30px;
  height: 30px;
}

@keyframes page-faq__pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-faq__cta-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  .page-faq__cta-text {
    text-align: left;
  }
  .page-faq__cta-image-wrapper {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .page-faq__hero-title {
    font-size: 2.5em;
  }
  .page-faq__hero-description {
    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.active {
    padding: 15px 20px;
  }
  .page-faq__cta-title {
    font-size: 2.2em;
  }
  .page-faq__cta-description {
    font-size: 1em;
  }
  .page-faq__cta-btn {
    font-size: 1.1em;
  }
  .page-faq__floating-promo-link {
    font-size: 0.9em;
    padding: 8px 15px;
  }
  .page-faq__floating-promo {
    bottom: 10px;
    right: 10px;
  }
}