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

.page-faq__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-faq__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
  letter-spacing: -0.03em;
}

.page-faq__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  max-width: 800px;
  margin: 0 auto;
}

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

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

.page-faq__section-heading {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
}

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

.page-faq__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-faq__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  cursor: pointer;
  position: relative;
  user-select: none;
  background-color: #FFFFFF;
  transition: background-color 0.3s ease;
}

.page-faq__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  color: #2F6BFF;
  transition: transform 0.3s 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: #F4F7FB;
}

.page-faq__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D; /* Text Main */
}

.page-faq__faq-answer p {
  margin-bottom: 15px;
}

.page-faq__faq-answer a {
  color: #2F6BFF; /* Primary */
  text-decoration: none;
  font-weight: 500;
}

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

.page-faq__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

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

.page-faq__contact-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.page-faq__contact-text {
  max-width: 600px;
}

.page-faq__sub-heading {
  font-size: clamp(1.5em, 2.5vw, 2em);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

.page-faq__contact-text p {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 25px;
}

.page-faq__btn--secondary {
  background: #6FA3FF; /* Secondary color for a slight variation */
}

.page-faq__btn--secondary:hover {
  box-shadow: 0 6px 15px rgba(111, 163, 255, 0.3);
}

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

  .page-faq__hero-image {
    margin-bottom: 20px;
  }

  .page-faq__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-faq__description {
    font-size: 1em;
  }

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

  .page-faq__section-heading {
    font-size: clamp(1.6em, 5vw, 2em);
  }

  .page-faq__faq-question {
    padding: 18px 20px;
    font-size: 1.05em;
  }

  .page-faq__faq-question::after {
    right: 20px;
    font-size: 1.3em;
  }

  .page-faq__faq-answer {
    padding: 0 20px 18px;
    font-size: 0.95em;
  }

  .page-faq__contact-support {
    padding: 30px;
    gap: 20px;
  }

  .page-faq__contact-image {
    max-width: 300px;
  }

  .page-faq__sub-heading {
    font-size: clamp(1.3em, 4vw, 1.8em);
  }

  .page-faq__contact-text p {
    font-size: 0.95em;
  }

  /* Critical: prevent content overflow on mobile */
  .page-faq img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-faq__main-title {
    font-size: clamp(1.6em, 7vw, 2.2em);
  }

  .page-faq__description {
    font-size: 0.95em;
  }

  .page-faq__section-heading {
    font-size: clamp(1.4em, 6vw, 1.8em);
  }

  .page-faq__faq-question {
    padding: 15px 18px;
    font-size: 1em;
  }

  .page-faq__faq-answer {
    padding: 0 18px 15px;
    font-size: 0.9em;
  }

  .page-faq__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-faq__contact-support {
    padding: 20px;
  }

  .page-faq__sub-heading {
    font-size: clamp(1.2em, 5vw, 1.6em);
  }
}