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

.page-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  max-width: 1390px;
  margin: 0 auto;
  text-align: center;
  background-color: #F4F7FB;
  border-radius: 12px;
  overflow: hidden;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  max-height: 400px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

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

.page-faq__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1F2D3D;
  margin-bottom: 20px;
  max-width: 100%;
}

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

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

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

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

.page-faq__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
}

.page-faq__faq-grid {
  display: flex;
  gap: 30px;
}

.page-faq__faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-faq__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-faq__faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-faq__faq-question {
  font-size: 1.15rem;
  font-weight: bold;
  color: #2F6BFF;
  cursor: pointer;
  display: block;
  padding-right: 30px;
  position: relative;
}

.page-faq__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.page-faq__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  padding-top: 15px;
  border-top: 1px solid #D6E2FF;
  margin-top: 15px;
}

.page-faq__faq-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
}

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

.page-faq__cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-faq__cta-content {
  flex: 1;
  padding: 20px;
}

.page-faq__cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-faq__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 30px;
}

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

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

.page-faq__cta-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-faq__cta-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-faq__cta-section {
    flex-direction: row;
    text-align: left;
  }
  .page-faq__cta-content {
    padding-right: 40px;
  }
  .page-faq__cta-image-wrapper {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-bottom: 40px;
  }

  .page-faq__hero-image-wrapper {
    max-height: 250px;
  }

  .page-faq__hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-faq__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  .page-faq__faq-grid {
    flex-direction: column;
  }

  .page-faq__faq-item {
    padding: 15px;
  }

  .page-faq__faq-question {
    font-size: 1.05rem;
  }

  .page-faq__faq-answer {
    font-size: 0.95rem;
  }

  .page-faq__cta-section {
    flex-direction: column;
    padding: 30px 15px;
  }

  .page-faq__cta-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .page-faq__cta-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-faq__cta-image-wrapper {
    padding: 15px;
  }

  /* Enforce image responsiveness for mobile */
  .page-faq img {
    max-width: 100%;
    height: auto;
  }
}