.page-faq {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-faq__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, assuming body has padding-top from shared.css */
  padding-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height */
  overflow: hidden;
  margin-bottom: 20px;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-faq__description {
  font-size: 1.15rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-faq__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  max-width: 600px; /* Limit button group width */
  box-sizing: border-box;
}

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

.page-faq__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast */
  border: 2px solid transparent;
}

.page-faq__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-faq__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-faq__btn-secondary:hover {
  background: rgba(221, 161, 29, 0.1);
  transform: translateY(-3px);
}

/* Content Section */
.page-faq__content-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

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

.page-faq__intro-text {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF6D6;
}

/* FAQ List */
.page-faq__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-faq__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #0A0A0A; /* Background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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, border-color 0.3s ease;
  color: #FFD36B; /* Glow */
  font-weight: 600;
}

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: rgba(221, 161, 29, 0.1);
}

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

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

details.page-faq__faq-item .page-faq__faq-answer {
  padding: 0 25px 20px;
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  border-top: 1px dashed #3A2A12; /* Border */
  border-radius: 0 0 8px 8px;
}

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

.page-faq__faq-answer ul,
.page-faq__faq-answer ol {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 25px;
}

.page-faq__faq-answer li {
  margin-bottom: 5px;
}

/* CTA Banner */
.page-faq__cta-banner {
  background: linear-gradient(90deg, #F2C14E 0%, #DDA11D 100%);
  padding: 60px 20px;
  text-align: center;
  color: #111111; /* Dark text for contrast */
}

.page-faq__banner-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-faq__banner-text {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Related Info Section */
.page-faq__related-info {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

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

.page-faq__article-body h3 {
  color: #FFD36B;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-faq__article-body strong {
  color: #FFD36B;
}

.page-faq__article-figure {
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
}

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

.page-faq__figure-caption {
  font-size: 0.9rem;
  color: #FFD36B;
  margin-top: 10px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-faq__container {
    padding: 0 25px;
  }
  .page-faq__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-faq__description {
    font-size: 1rem;
  }
  .page-faq__section-title {
    font-size: 2rem;
  }
  .page-faq__banner-title {
    font-size: 2rem;
  }
  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-faq__faq-qtext {
    font-size: 1rem;
  }
  .page-faq__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
}

@media (max-width: 768px) {
  .page-faq__container {
    padding: 0 15px !important; /* Ensure padding on mobile */
  }

  /* Hero Section */
  .page-faq__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 30px;
  }
  .page-faq__hero-image-wrapper {
    max-height: 400px;
    margin-bottom: 15px;
  }
  .page-faq__hero-image {
    object-fit: contain !important; /* Must be contain for mobile */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-faq__hero-content {
    padding: 15px;
  }
  .page-faq__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 10px;
  }
  .page-faq__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* CTA Buttons */
  .page-faq__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px !important; /* Add padding to container */
  }
  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Content Section */
  .page-faq__content-section {
    padding: 40px 0;
  }
  .page-faq__section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .page-faq__intro-text {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* FAQ List */
  details.page-faq__faq-item {
    margin-bottom: 10px;
  }
  details.page-faq__faq-item summary.page-faq__faq-question {
    padding: 15px 20px;
  }
  .page-faq__faq-qtext {
    font-size: 0.95rem;
  }
  .page-faq__faq-toggle {
    font-size: 22px;
    width: 22px;
  }
  details.page-faq__faq-item .page-faq__faq-answer {
    padding: 0 20px 15px;
  }
  .page-faq__faq-answer ul,
  .page-faq__faq-answer ol {
    padding-left: 20px;
  }

  /* CTA Banner */
  .page-faq__cta-banner {
    padding: 40px 15px;
  }
  .page-faq__banner-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .page-faq__banner-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* Related Info Section */
  .page-faq__related-info {
    padding: 40px 0;
  }
  .page-faq__article-body {
    font-size: 0.95rem;
  }
  .page-faq__article-body h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-faq__article-figure {
    margin: 30px auto;
  }
  .page-faq__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
}