.page-faq {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-faq__hero-section {
  padding-top: 10px; /* Small top padding as per requirement */
  padding-bottom: 40px;
  background-color: #F4F7FB;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

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

.page-faq__main-title {
  color: #1F2D3D;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  /* No fixed font-size, relying on browser defaults and responsiveness */
}

.page-faq__hero-description {
  color: #1F2D3D;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.page-faq__accordion-section {
  padding: 60px 20px;
  background-color: #F4F7FB;
}

.page-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.page-faq__section-title {
  width: 100%;
  text-align: center;
  color: #1F2D3D;
  font-weight: 700;
  margin-bottom: 40px;
}

.page-faq__accordion {
  flex: 2;
  min-width: 300px;
}

.page-faq__image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-faq__section-image {
  width: 100%;
  height: auto;
  max-width: 600px; /* Ensure image doesn't get too large */
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-faq__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 25px;
  background-color: #FFFFFF;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1F2D3D;
  transition: background-color 0.3s ease;
}

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

.page-faq__accordion-header[aria-expanded="true"] {
  background-color: #EBF2FF;
  border-bottom: 1px solid #D6E2FF;
}

.page-faq__accordion-question {
  margin: 0;
  color: #1F2D3D;
}

.page-faq__accordion-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

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

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

.page-faq__accordion-content p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-faq__read-more-link {
  display: inline-block;
  margin-bottom: 15px;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-faq__read-more-link:hover {
  text-decoration: underline;
}

.page-faq__contact-cta {
  padding: 60px 20px;
  text-align: center;
  background-color: #EBF2FF;
  border-top: 1px solid #D6E2FF;
}

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

.page-faq__cta-description {
  color: #1F2D3D;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-faq__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

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

  .page-faq__main-title {
    font-size: 2rem;
  }

  .page-faq__hero-description,
  .page-faq__cta-description {
    font-size: 1rem;
  }

  .page-faq__accordion-section {
    padding: 40px 15px;
  }

  .page-faq__container {
    flex-direction: column;
    gap: 30px;
  }

  .page-faq__accordion,
  .page-faq__image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-faq__section-image,
  .page-faq__hero-image {
    max-width: 100%;
    height: auto; /* Ensures images are responsive and don't overflow */
  }

  .page-faq__accordion-header {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-faq__accordion-content p {
    font-size: 0.95rem;
  }

  .page-faq__contact-cta {
    padding: 40px 15px;
  }

  .page-faq__cta-title {
    font-size: 1.75rem;
  }

  /* Ensure all content area images within .page-faq are responsive */
  .page-faq img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-faq__main-title {
    font-size: 1.75rem;
  }
  .page-faq__section-title {
    font-size: 1.5rem;
  }
  .page-faq__cta-title {
    font-size: 1.5rem;
  }
}

/* Ensure content area images maintain minimum size where applicable, but prioritize responsiveness */
.page-faq__hero-image,
.page-faq__section-image {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}