.page-faq {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

.page-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 40px;
  background-color: #2F6BFF;
  position: relative;
  overflow: hidden;
}

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

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

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

.page-faq__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 100%; /* Ensures it doesn't overflow */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0EFFF;
}

.page-faq__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  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:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-faq__content-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-faq__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #2F6BFF;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
}

.page-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #6FA3FF;
  border-radius: 2px;
}

.page-faq__accordion-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-faq__accordion-item {
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
}

.page-faq__accordion-item.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-faq__accordion-header {
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #1F2D3D;
  cursor: pointer;
  background-color: #F8F9FA;
  border-bottom: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.page-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2F6BFF;
}

.page-faq__accordion-item.active .page-faq__accordion-header::after {
  content: '-';
  transform: rotate(0deg);
}

.page-faq__accordion-item.active .page-faq__accordion-header {
  background-color: #EBF2FF;
  color: #000000; /* Custom Color_1776249996415 */
  border-bottom-color: #D6E2FF;
}

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

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

.page-faq__accordion-body p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1em;
}

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

.page-faq__inline-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-faq__inline-link:hover {
  color: #6FA3FF;
  text-decoration: underline;
}

.page-faq__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #EBF2FF;
  margin-top: 50px;
  border-radius: 12px;
  max-width: 1200px;
  margin: 50px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-faq__cta-title {
  font-size: 2em;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 20px;
}

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

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

.page-faq__cta-button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
}

.page-faq__cta-button--secondary {
  background: #FFFFFF;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: none;
}

.page-faq__cta-button--secondary:hover {
  background-color: #F4F7FB;
  color: #1F2D3D;
  border-color: #1F2D3D;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding: 10px 15px 30px;
  }

  .page-faq__hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .page-faq__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-faq__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-faq__content-section {
    margin: 30px 15px;
    padding: 15px;
  }

  .page-faq__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

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

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

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

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

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

  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-faq__content-section img, .page-faq__accordion-body img {
    max-width: 100% !important;
    height: auto !important;
  }
}