.page-faq__hero-section {
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #f8f8f8; /* Light background for the hero section */
}

.page-faq__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 16px;
  gap: 24px;
}

.page-faq__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #333333; /* Dark text for light background */
}

.page-faq__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #113B7A;
}

.page-faq__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #333333;
}

.page-faq__hero-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-faq__btn-primary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-faq__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-faq__btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: #ffffff;
  color: #113B7A;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: 2px solid #113B7A;
  cursor: pointer;
  box-sizing: border-box;
}

.page-faq__btn-secondary:hover {
  background-color: #113B7A;
  color: #ffffff;
}

.page-faq__hero-image {
  flex: 1 1 45%;
  text-align: center;
  min-width: 300px;
}

.page-faq__hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-faq__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  color: #333333; /* Default dark text for main content area */
}

.page-faq__section-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-faq__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #113B7A;
  margin-bottom: 10px;
}

.page-faq__section-subtitle {
  font-size: 1.1rem;
  color: #555555;
}

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

.page-faq__faq-item {
  background-color: #ffffff; /* Light background for FAQ items */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  color: #113B7A;
  cursor: pointer;
  list-style: none; /* Hide default marker for details */
  padding: 5px 0;
}

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

.page-faq__faq-qtext {
  flex-grow: 1;
}

.page-faq__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 10px;
  color: #1D5FD1;
}

.page-faq__faq-answer {
  padding-top: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

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

.page-faq__faq-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 15px;
  border-radius: 8px;
}

.page-faq__faq-button {
  margin-top: 15px;
}

.page-faq__call-to-action-section {
  background-color: #10233F; /* Custom Card BG */
  padding: 60px 16px;
  text-align: center;
  color: #F3F8FF; /* Custom Text Main */
  border-top: 1px solid #1B3357; /* Custom Divider */
}

.page-faq__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-faq__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #F3F8FF;
}

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

/* General image styling for content area */
.page-faq img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-faq__hero-container {
    padding: 30px 16px;
  }
  .page-faq__main-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }
  .page-faq__hero-description {
    font-size: 1rem;
  }
  .page-faq__section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.2rem);
  }
  .page-faq__section-subtitle {
    font-size: 1rem;
  }
  .page-faq__faq-question {
    font-size: 1.1rem;
  }
  .page-faq__faq-answer {
    font-size: 0.95rem;
  }
  .page-faq__cta-title {
    font-size: clamp(1.6rem, 3.8vw, 2.2rem);
  }
  .page-faq__cta-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-faq__hero-section {
    padding-top: 10px !important; /* Small top padding, relies on body for header offset */
    padding-bottom: 30px;
  }
  .page-faq__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }
  .page-faq__hero-content {
    order: 2; /* Content below image */
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-faq__hero-image {
    order: 1; /* Image above content */
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-faq__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    text-align: center;
  }
  .page-faq__hero-description {
    font-size: 0.95rem;
    text-align: center;
  }
  .page-faq__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .page-faq__btn-primary,
  .page-faq__btn-secondary,
  .page-faq a[class*="button"],
  .page-faq a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Content Area */
  .page-faq__content-area {
    padding: 30px 15px;
  }
  .page-faq__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .page-faq__section-subtitle {
    font-size: 0.9rem;
  }
  .page-faq__faq-question {
    font-size: 1rem;
  }
  .page-faq__faq-answer {
    font-size: 0.9rem;
  }

  /* All images */
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* All containers with images */
  .page-faq__hero-section,
  .page-faq__content-area,
  .page-faq__faq-item,
  .page-faq__call-to-action-section,
  .page-faq__hero-cta-buttons,
  .page-faq__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* CTA Section */
  .page-faq__call-to-action-section {
    padding: 40px 15px;
  }
  .page-faq__cta-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .page-faq__cta-description {
    font-size: 0.95rem;
  }
}