.page-faq {
  background-color: #F4F7FB;
  color: #1F2D3D;
  padding-bottom: 40px;
}

.page-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small padding, body handles --header-offset */
  padding-bottom: 40px;
  background-image: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

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

.page-faq__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-faq__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 16px;
  max-width: 100%;
}

.page-faq__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #FFFFFF;
}

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

.page-faq__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-faq__cta-button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__cta-button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-faq__cta-button--secondary {
  background-color: #FFFFFF;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-faq__cta-button--secondary:hover {
  background-color: #F0F5FF;
  color: #1A4DCC;
  transform: translateY(-2px);
}

.page-faq__content-section {
  padding: 40px 20px;
}

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

.page-faq__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-faq__intro-text {
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #1F2D3D;
}

.page-faq__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.page-faq__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-faq__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1F2D3D;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: background-color 0.2s ease;
}

.page-faq__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #2F6BFF;
  transition: transform 0.2s ease;
}

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

.page-faq__faq-item[open] .page-faq__faq-question {
  background-color: #F9FAFB;
}

.page-faq__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #1F2D3D;
}

.page-faq__call-to-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 25px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF;
}

.page-faq__cta-image {
  width: 200px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-faq__cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-faq__cta-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-faq__main-title {
    font-size: 2.5rem;
  }
  .page-faq__section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-bottom: 30px;
  }
  .page-faq__main-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }
  .page-faq__description {
    font-size: 1rem;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__cta-button {
    width: 80%;
    max-width: 300px;
  }
  .page-faq__content-section {
    padding: 30px 15px;
  }
  .page-faq__section-title {
    font-size: 1.6rem;
  }
  .page-faq__intro-text {
    font-size: 0.95rem;
  }
  .page-faq__faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }
  .page-faq__faq-question::after {
    right: 20px;
  }
  .page-faq__faq-answer {
    padding: 0 20px 18px 20px;
    font-size: 0.95rem;
  }
  .page-faq__cta-title {
    font-size: 1.5rem;
  }
  .page-faq__cta-text {
    font-size: 0.95rem;
  }
  /* Ensure images do not overflow */
  .page-faq img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-content {
    padding: 0 15px;
  }
  .page-faq__cta-button {
    width: 90%;
  }
  .page-faq__faq-question {
    font-size: 0.95rem;
  }
  .page-faq__faq-answer {
    font-size: 0.9rem;
  }
}