.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: #FFFFFF; /* Card BG for hero section */
  border-bottom: 1px solid #D6E2FF;
}

.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: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-faq__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  padding: 0 10px; /* Small padding for mobile */
  /* No fixed font-size, rely on clamp if needed, otherwise browser default */
}

@media (min-width: 768px) {
  .page-faq__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Example clamp for larger screens */
  }
}

.page-faq__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  padding: 0 15px;
}

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

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

.page-faq__content-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.page-faq__section-title {
  font-size: 2.2rem;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-faq__accordion-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 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.15rem;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  transition: background-color 0.3s ease;
}

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

.page-faq__accordion-header h3 {
  margin: 0;
  color: inherit;
}

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

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

.page-faq__accordion-body {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #1F2D3D; /* Text Main */
  background-color: #FFFFFF;
}

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

.page-faq__accordion-body a {
  color: #2F6BFF; /* Primary color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-faq__accordion-body a:hover {
  text-decoration: underline;
}

.page-faq__contact-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #F4F7FB;
  margin-top: 40px;
  border-top: 1px solid #D6E2FF;
}

.page-faq__contact-title {
  font-size: 2rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

.page-faq__contact-description {
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-faq__contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

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

  .page-faq__main-title {
    font-size: 2rem; /* Adjusted for mobile */
  }

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

  .page-faq__cta-button,
  .page-faq__contact-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

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

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

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

  .page-faq__accordion-body {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  .page-faq__contact-title {
    font-size: 1.7rem;
  }

  .page-faq__contact-description {
    font-size: 1rem;
  }

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

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

  .page-faq__section-title {
    font-size: 1.6rem;
  }

  .page-faq__contact-title {
    font-size: 1.5rem;
  }
}