.page-faq__hero-section {
  padding-top: 10px; /* Aligns with common padding top for body, prevents double spacing */
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%);
  color: #F3F8FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height on desktop */
  overflow: hidden;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-faq__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Overlap with image slightly for visual effect */
  background: rgba(16, 35, 63, 0.85); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  border: 1px solid #244D84;
}

.page-faq__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-faq__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

.page-faq__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-faq__btn-primary,
.page-faq__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-faq__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-faq__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.page-faq__btn-secondary {
  background: #10233F; /* Card BG */
  color: #F3F8FF; /* Text Main */
  border: 2px solid #244D84; /* Border */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-faq__btn-secondary:hover {
  background: #244D84; /* Border color on hover */
  color: #F2C14E; /* Gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.page-faq__faq-section {
  padding: 60px 0;
  background: #f8f9fa; /* Light background for FAQ */
  color: #333333; /* Dark text for light background */
}

.page-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-faq__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #113B7A; /* Primary color */
}

.page-faq__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-faq__faq-list {
  margin-bottom: 50px;
}

details.page-faq__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #ffffff; /* White background for card */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

details.page-faq__faq-item summary.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  color: #113B7A; /* Primary color for question */
}

details.page-faq__faq-item summary.page-faq__faq-question::-webkit-details-marker {
  display: none;
}

details.page-faq__faq-item summary.page-faq__faq-question:hover {
  background: #f5f5f5;
}

.page-faq__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
}

.page-faq__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #1D5FD1; /* Auxiliary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-faq__faq-item .page-faq__faq-answer {
  padding: 0 25px 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  color: #333333; /* Dark text for answer */
  line-height: 1.7;
}

.page-faq__faq-answer p {
  margin-bottom: 15px;
  font-size: 1rem;
}

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

.page-faq__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-faq__cta-section {
  text-align: center;
  padding: 40px;
  background: #10233F; /* Card BG */
  border-radius: 10px;
  color: #F3F8FF; /* Text Main */
  border: 1px solid #244D84;
}

.page-faq__cta-text {
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #AFC4E8; /* Text Secondary */
}

.page-faq__seo-content {
  padding: 80px 0;
  background: #08162B; /* Deep Navy */
  color: #F3F8FF; /* Text Main */
}

.page-faq__section-title--seo {
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
}

.page-faq__seo-intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #AFC4E8; /* Text Secondary */
}

.page-faq__article-body {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1rem;
}

.page-faq__article-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #F3F8FF; /* Text Main */
  border-bottom: 2px solid #1B3357; /* Divider */
  padding-bottom: 10px;
}

.page-faq__article-body p {
  margin-bottom: 20px;
  color: #AFC4E8; /* Text Secondary */
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-faq__hero-content {
    margin-top: -80px;
  }
  .page-faq__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-faq__hero-description {
    font-size: 1rem;
  }
  .page-faq__section-title {
    font-size: 2rem;
  }
  details.page-faq__faq-item summary.page-faq__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-faq__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  .page-faq__faq-answer {
    padding: 0 20px 20px;
  }
  .page-faq__article-subtitle {
    font-size: 1.6rem;
  }
  .page-faq__article-body {
    padding: 0 15px;
  }
  .page-faq__container {
    padding: 0 15px;
  }
}

@media (max-width: 849px) {
  .page-faq__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-top: 10px; /* Specific for mobile */
    padding-bottom: 30px;
  }
  .page-faq__hero-image-wrapper {
    max-height: 300px;
  }
  .page-faq__hero-content {
    margin-top: -60px;
    padding: 15px;
    border-radius: 10px;
  }
  .page-faq__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem); /* Responsive font size */
    margin-bottom: 10px;
  }
  .page-faq__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-faq__faq-section {
    padding: 40px 0;
  }
  .page-faq__section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .page-faq__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  details.page-faq__faq-item summary.page-faq__faq-question {
    padding: 15px;
    font-size: 1rem;
    flex-wrap: wrap;
  }
  .page-faq__faq-qtext {
    width: calc(100% - 40px);
    margin-bottom: 5px;
  }
  .page-faq__faq-toggle {
    margin-left: auto;
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
  details.page-faq__faq-item .page-faq__faq-answer {
    padding: 0 15px 15px;
  }
  .page-faq__faq-answer p {
    font-size: 0.95rem;
  }
  .page-faq__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 15px auto;
  }
  .page-faq__cta-section {
    padding: 30px 20px;
  }
  .page-faq__cta-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .page-faq__seo-content {
    padding: 50px 0;
  }
  .page-faq__section-title--seo {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .page-faq__seo-intro-text {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .page-faq__article-body {
    padding: 0 15px;
  }
  .page-faq__article-subtitle {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-faq__article-body p {
    font-size: 0.95rem;
  }
  .page-faq__container,
  .page-faq__faq-list,
  .page-faq__cta-section,
  .page-faq__seo-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}