.page-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding as per instruction */
  margin-bottom: 40px;
  text-align: center;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-faq__hero-content {
  max-width: 900px;
  padding: 20px;
  background-color: #111111; /* Card BG */
  border-radius: 8px;
  color: #FFF6D6; /* Text Main */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-faq__main-title {
  color: #F2C14E; /* Main Color */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.5);
}

.page-faq__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
}

.page-faq__introduction-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  background-color: #0A0A0A; /* Background */
  border-radius: 8px;
  color: #FFF6D6; /* Text Main */
  border: 1px solid #3A2A12; /* Border */
}

.page-faq__section-title {
  font-size: 2em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 20px;
  text-align: center;
}

.page-faq__section-description {
  font-size: 1.05em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-faq__faq-list-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.page-faq__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  color: #FFF6D6; /* Text Main */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-faq__faq-question {
  font-size: 1.4em;
  color: #FFD36B; /* Auxiliary Color / Glow */
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
}

.page-faq__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #F2C14E;
  transition: transform 0.3s ease;
}

.page-faq__faq-item--active .page-faq__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 10px;
}

.page-faq__faq-item--active .page-faq__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  margin-top: 15px;
}

.page-faq__button {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  border-radius: 5px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for contrast on gold button */
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
  min-width: 150px; /* Ensure button is not too small */
}

.page-faq__button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
}

.page-faq__call-to-action-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  background-color: #111111; /* Card BG */
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  color: #FFF6D6; /* Text Main */
  text-align: center;
}

.page-faq__cta-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-faq__cta-title {
  font-size: 2.2em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 20px;
}

.page-faq__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-faq__button--primary {
  font-size: 1.15em;
  padding: 15px 30px;
}

.page-faq__cta-image {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

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

  .page-faq__main-title {
    font-size: clamp(2em, 5vw, 2.5em);
  }

  .page-faq__hero-description {
    font-size: 1em;
  }

  .page-faq__section-title {
    font-size: 1.8em;
  }

  .page-faq__faq-question {
    font-size: 1.2em;
  }

  .page-faq__faq-answer {
    font-size: 0.95em;
  }

  .page-faq__button {
    padding: 10px 20px;
    font-size: 0.95em;
  }

  .page-faq__call-to-action-section {
    flex-direction: column;
    padding: 30px 15px;
  }

  .page-faq__cta-title {
    font-size: 1.8em;
  }

  .page-faq__cta-description {
    font-size: 1em;
  }

  .page-faq__cta-image {
    width: 100%; /* Ensure mobile images don't overflow */
    max-width: 100%;
    height: auto;
  }

  .page-faq__faq-list-section img, .page-faq__introduction-section img, .page-faq__hero-section img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content area images are responsive */
  .page-faq__faq-item img,
  .page-faq__introduction-section img,
  .page-faq__call-to-action-section img {
    max-width: 100%; 
    height: auto; 
  }
}

/* Ensure all images within .page-faq are at least 200px wide for their display area */
.page-faq img {
  min-width: 200px;
  min-height: 200px; /* Applies to the natural dimensions, not necessarily the rendered size */
}

/* Override for specific small images if necessary, but generally avoided as per instructions */
/* For example, if a logo image is needed and it's small, it would be excluded from this rule by a more specific class */

/* General image sizing within the content area to meet minimums */
.page-faq__faq-item img,
.page-faq__introduction-section img,
.page-faq__cta-image {
  width: 100%; /* Default to fill container */
  height: auto;
  max-width: 100%; /* Ensure it doesn't overflow */
  min-width: 200px; /* Enforce minimum width for content images */
  min-height: 200px; /* Enforce minimum height for content images */
  object-fit: cover;
}

/* WCAG AA contrast check for text colors on backgrounds */
body {
  background-color: #0A0A0A; /* Background */
}
.page-faq__hero-content, .page-faq__faq-item, .page-faq__call-to-action-section {
  background-color: #111111; /* Card BG */
}

.page-faq__main-title, .page-faq__hero-description, .page-faq__section-description, .page-faq__faq-answer, .page-faq__cta-description {
  color: #FFF6D6; /* Text Main */
}

.page-faq__section-title, .page-faq__cta-title {
  color: #F2C14E; /* Main Color */
}

.page-faq__faq-question {
  color: #FFD36B; /* Auxiliary Color */
}

/* Button text color on gradient background */
.page-faq__button {
  color: #111111; /* Dark text for contrast on gold button */
}

/* Mobile content area images constraint */
@media (max-width: 768px) {
  .page-faq__hero-section img,
  .page-faq__introduction-section img,
  .page-faq__faq-list-section img,
  .page-faq__call-to-action-section img {
    max-width: 100% !important;
    height: auto !important;
  }
}