.page-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body padding for header offset */
  padding-bottom: 60px;
  background: var(--page-bg, #0D0E12);
  color: var(--text-main, #FFF3E6);
  overflow: hidden;
}

.page-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

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

.page-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: 60px; /* Space from top of hero section */
}

.page-faq__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFA53A;
  text-shadow: 0 0 10px rgba(255,165,58,0.5);
}

.page-faq__intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-faq__btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,165,58,0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-faq__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  box-shadow: 0 6px 20px rgba(255,165,58,0.6);
  transform: translateY(-2px);
}

.page-faq__section {
  padding: 60px 0;
  background: var(--page-bg, #0D0E12);
  color: var(--text-main, #FFF3E6);
}

.page-faq__section--spacing {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-faq__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #FFA53A;
  text-shadow: 0 0 8px rgba(255,165,58,0.3);
}

/* FAQ Accordion Styles */
details.page-faq__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color, #A84F0C);
  overflow: hidden;
  background: var(--card-bg, #17191F);
  color: var(--text-main, #FFF3E6);
  box-shadow: 0 2px 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;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFF3E6;
}

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-color: rgba(255,165,58,0.1);
}

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

.page-faq__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFA53A;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-faq__faq-item .page-faq__faq-answer {
  padding: 0 25px 20px;
  background: rgba(255,165,58,0.05);
  border-radius: 0 0 8px 8px;
  font-size: 1rem;
  line-height: 1.7;
  color: #E0E0E0;
}

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

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

.page-faq__text-link {
  color: #FFA53A;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-faq__text-link:hover {
  color: #FFB04D;
}

.page-faq__cta-group {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px dashed var(--border-color, #A84F0C);
}

.page-faq__cta-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-faq__btn-primary--small {
  padding: 12px 25px;
  font-size: 1rem;
}

.page-faq__section--full-width {
  padding: 80px 0;
  background: var(--deep-orange, #D96800);
  background: linear-gradient(90deg, #FF8C1A 0%, #D96800 100%);
  color: #ffffff;
  text-align: center;
}

.page-faq__container--flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-faq__info-block {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-faq__info-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFF3E6;
}

.page-faq__info-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #FFF3E6;
}

.page-faq__image-block {
  flex-shrink: 0;
  width: 400px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.page-faq__image-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.page-faq__section--final {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-faq__article-body {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #E0E0E0;
  text-align: justify;
}

.page-faq__article-body p {
  margin-bottom: 1.2em;
}

.page-faq__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: #FFA53A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #FFA53A;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-faq__btn-secondary:hover {
  background: #FFA53A;
  color: #FFF3E6;
  box-shadow: 0 4px 15px rgba(255,165,58,0.4);
  transform: translateY(-2px);
}

.page-faq__btn-secondary--center {
  display: block;
  margin: 0 auto;
  text-align: center;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-faq__hero-content {
    max-width: 800px;
  }
  .page-faq__info-block {
    max-width: 100%;
    text-align: center;
  }
  .page-faq__image-block {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-bottom: 40px;
  }
  .page-faq__hero-image img {
    object-fit: contain !important; /* Ensure image is fully visible */
    aspect-ratio: unset !important;
  }
  .page-faq__hero-content {
    margin-top: 40px;
    padding: 0 15px;
  }
  .page-faq__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-faq__intro-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-faq__section,
  .page-faq__section--spacing,
  .page-faq__section--full-width,
  .page-faq__section--final {
    padding: 40px 0;
  }
  .page-faq__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-faq__section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 30px;
  }
  details.page-faq__faq-item summary.page-faq__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-faq__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
    width: 25px;
  }
  details.page-faq__faq-item .page-faq__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }
  .page-faq__cta-group {
    margin-top: 40px;
    padding-top: 30px;
  }
  .page-faq__cta-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-faq__btn-primary--small {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  .page-faq__container--flex {
    flex-direction: column-reverse; /* Image above text on mobile for this section */
    gap: 30px;
  }
  .page-faq__info-block {
    text-align: center;
  }
  .page-faq__info-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
    margin-bottom: 10px;
  }
  .page-faq__info-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-faq__image-block {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }
  .page-faq__article-body {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 0 5px; /* Slight inner padding for text */
  }
  /* All images must be responsive */
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-faq__section,
  .page-faq__card,
  .page-faq__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}