.page-faq {
  background-color: #FFFFFF;
  color: #000000;
  padding-bottom: 20px; /* Add some padding at the bottom for overall spacing */
}

.page-faq__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px; /* Spacing below hero */
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 9; /* Default aspect ratio for hero, will be 1920x1080 */
  max-height: 675px; /* Limit height for larger screens */
}

.page-faq__hero-content {
  text-align: center;
  padding: 20px 15px;
  background-color: #26A9E0; /* Use primary color for content background */
  color: #FFFFFF;
}

.page-faq__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Responsive font size */
}

.page-faq__description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.page-faq__content-section {
  padding: 10px 0;
}

.page-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-faq__section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-faq__intro-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-faq__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-faq__faq-question {
  display: block;
  padding: 18px 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  position: relative;
  user-select: none;
  background-color: #F8F8F8;
  border-bottom: 1px solid #E0E0E0;
}

.page-faq__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

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

.page-faq__faq-answer {
  padding: 15px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  background-color: #FFFFFF;
}

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

.page-faq__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-faq__link-button {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: 600;
}

.page-faq__link-button:hover {
  color: #EA7C07;
}

.page-faq__illustration {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  border-radius: 8px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-faq__cta-section {
  text-align: center;
  background-color: #F0F8FF; /* Light background for CTA */
  padding: 40px 20px;
  border-radius: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-faq__cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-faq__cta-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__contact-button {
  display: inline-block;
  background-color: #EA7C07; /* Login color for CTA button */
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background-color 0.3s ease;
}

.page-faq__contact-button:hover {
  background-color: #D36C00; /* Slightly darker orange on hover */
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-faq__main-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  .page-faq__description {
    font-size: 1rem;
  }
  .page-faq__section-title {
    font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  }
  .page-faq__faq-question {
    font-size: 1.05rem;
  }
  .page-faq__faq-answer {
    font-size: 0.95rem;
  }
  .page-faq__cta-title {
    font-size: clamp(1.3rem, 4vw, 2rem);
  }
}

@media (max-width: 768px) {
  .page-faq__container {
    padding: 0 10px;
  }
  .page-faq__hero-image,
  .page-faq__illustration {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-faq__main-title {
    font-size: clamp(1.3rem, 6vw, 2.2rem);
  }
  .page-faq__description {
    font-size: 0.9rem;
  }
  .page-faq__section-title {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }
  .page-faq__faq-question {
    font-size: 1rem;
    padding: 15px 15px;
  }
  .page-faq__faq-question::after {
    right: 15px;
  }
  .page-faq__faq-answer {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .page-faq__cta-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
  .page-faq__contact-button {
    padding: 10px 25px;
    font-size: 1rem;
  }
}