.page-faq__hero-section {
  padding-top: 10px; /* Small top padding as per rules, not header-offset */
  background-color: var(--deep-navy); /* Deep Navy */
  color: var(--text-main); /* Text Main */
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/5; /* Aspect ratio for 1920x600 */
}

.page-faq__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-faq__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gold); /* Gold */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Responsive font size */
}

.page-faq__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary); /* Text Secondary */
}

.page-faq__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button); /* Button gradient */
  color: var(--text-main); /* Text Main */
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-faq__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow);
}

.page-faq__accordion-section {
  background-color: var(--deep-navy); /* Deep Navy */
  padding: 60px 20px;
}

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

.page-faq__section-title {
  text-align: center;
  color: var(--gold); /* Gold */
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  font-weight: 700;
}

.page-faq__accordion-item {
  background-color: var(--card-bg); /* Card BG */
  border: 1px solid var(--border); /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-faq__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: var(--card-bg); /* Card BG */
  color: var(--text-main); /* Text Main */
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover {
  background-color: #1a3053; /* Slightly lighter Card BG on hover */
}

.page-faq__question {
  margin: 0;
  color: var(--text-main); /* Text Main */
}

.page-faq__icon {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--gold); /* Gold */
}

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

.page-faq__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: var(--deep-navy); /* Deep Navy for content background */
  color: var(--text-secondary); /* Text Secondary */
}

.page-faq__accordion-content p {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1rem;
}

.page-faq__accordion-content.page-faq__accordion-content--expanded {
  max-height: 500px; /* Adjust based on expected content length */
  padding-top: 15px;
  padding-bottom: 25px;
}

.page-faq__inline-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button); /* Button gradient */
  color: var(--text-main); /* Text Main */
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-faq__inline-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%); /* Reverse gradient on hover */
}

.page-faq__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-faq__support-cta {
  background-color: var(--card-bg); /* Card BG */
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid var(--divider); /* Divider */
}

.page-faq__support-title {
  color: var(--gold); /* Gold */
  font-size: clamp(1.4rem, 3.8vw, 2.2rem);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-faq__support-description {
  color: var(--text-secondary); /* Text Secondary */
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.page-faq__cta-button--secondary {
  background: linear-gradient(180deg, #1D5FD1 0%, #113B7A 100%); /* Use secondary colors */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__cta-button--secondary:hover {
  background: linear-gradient(180deg, #113B7A 0%, #1D5FD1 100%); /* Reverse gradient on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow);
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-faq__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-faq__description {
    font-size: 1rem;
  }
  .page-faq__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-faq__accordion-header {
    font-size: 1.05rem;
    padding: 18px 20px;
  }
  .page-faq__accordion-content p {
    font-size: 0.95rem;
  }
  .page-faq__inline-button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  .page-faq__section-title {
    font-size: clamp(1.3rem, 5vw, 2.2rem);
  }
  .page-faq__support-title {
    font-size: clamp(1.2rem, 4.5vw, 2rem);
  }
  .page-faq__support-description {
    font-size: 1rem;
  }
  .page-faq__hero-image {
    max-height: 300px; /* Adjust max height for smaller screens */
  }
}

@media (max-width: 549px) {
  .page-faq__hero-content {
    padding: 30px 15px;
  }
  .page-faq__main-title {
    font-size: clamp(1.2rem, 7vw, 2.2rem);
  }
  .page-faq__description {
    font-size: 0.95rem;
  }
  .page-faq__accordion-header {
    font-size: 1rem;
    padding: 15px;
  }
  .page-faq__accordion-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-faq__accordion-content p {
    font-size: 0.9rem;
  }
  .page-faq__section-title {
    font-size: clamp(1.1rem, 6vw, 2rem);
    margin-bottom: 30px;
  }
  .page-faq__support-title {
    font-size: clamp(1rem, 5.5vw, 1.8rem);
  }
  .page-faq__support-description {
    font-size: 0.95rem;
  }
  .page-faq__hero-image {
    max-height: 250px;
  }
}

/* Mobile content area images anti-overflow */
@media (max-width: 768px) {
  .page-faq img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}