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

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

/* Hero Section */
.page-faq__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-faq__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px; /* Fixed height for desktop */
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 8px;
}

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

.page-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-faq__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.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: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  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: #0A0A0A;
  border: none;
}

.page-faq__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-faq__btn-secondary {
  background: transparent;
  color: #FFF6D6; /* Text Main */
  border: 2px solid #3A2A12; /* Border */
}

.page-faq__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* FAQ Section */
.page-faq__faq-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-faq__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow */
}

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

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

details.page-faq__faq-item {
  margin-bottom: 0;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  color: #FFF6D6;
}

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

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(255, 255, 255, 0.05);
  color: #FFD86A;
}

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

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

details.page-faq__faq-item .page-faq__faq-answer {
  padding: 0 25px 25px;
  background: #111111; /* Card BG */
  color: #FFF6D6;
}

details.page-faq__faq-item .page-faq__faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #FFF6D6;
}

/* CTA Section */
.page-faq__cta-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6;
}

.page-faq__cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #111111; /* Card BG */
  border-radius: 12px;
  padding: 50px;
  border: 1px solid #3A2A12;
}

.page-faq__cta-content {
  flex: 1;
  max-width: 60%;
}

.page-faq__cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow */
}

.page-faq__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-faq__btn-large {
  padding: 18px 40px;
  font-size: 1.15rem;
}

.page-faq__cta-image-wrapper {
  flex-shrink: 0;
  width: 35%;
  max-width: 400px;
  border-radius: 8px;
  overflow: hidden;
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-faq__hero-image-wrapper {
    height: 400px;
  }
  .page-faq__hero-content {
    padding: 0 15px;
  }
  .page-faq__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-faq__intro-text {
    font-size: 1rem;
  }
  details.page-faq__faq-item summary.page-faq__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-faq__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
  }
  details.page-faq__faq-item .page-faq__faq-answer {
    padding: 0 20px 20px;
  }
  .page-faq__cta-container {
    padding: 40px;
  }
  .page-faq__cta-content {
    max-width: 65%;
  }
  .page-faq__cta-image-wrapper {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .page-faq__container,
  .page-faq__cta-container,
  .page-faq__hero-content,
  .page-faq__faq-section,
  .page-faq__cta-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  /* HERO Main Image */
  .page-faq__hero-image-wrapper {
    height: auto !important;
    margin-bottom: 30px;
    border-radius: 0;
  }
  .page-faq__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    max-height: 300px; /* Limit height for mobile to prevent excessively tall images */
  }
  .page-faq__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-faq__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-faq__intro-text {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-faq__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
  }
  .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;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* FAQ Section */
  .page-faq__faq-section {
    padding: 50px 0;
  }
  .page-faq__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 15px;
  }
  .page-faq__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  details.page-faq__faq-item summary.page-faq__faq-question {
    font-size: 0.95rem;
    padding: 15px;
  }
  .page-faq__faq-qtext {
    font-size: 0.95rem;
  }
  .page-faq__faq-toggle {
    font-size: 20px;
    margin-left: 10px;
    width: 24px;
  }
  details.page-faq__faq-item .page-faq__faq-answer {
    padding: 0 15px 15px;
  }
  details.page-faq__faq-item .page-faq__faq-answer p {
    font-size: 0.9rem;
  }

  /* CTA Section */
  .page-faq__cta-section {
    padding: 50px 0;
  }
  .page-faq__cta-container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .page-faq__cta-content {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .page-faq__cta-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 15px;
  }
  .page-faq__cta-description {
    font-size: 0.95rem;
  }
  .page-faq__cta-image-wrapper {
    width: 80%;
    max-width: 300px;
  }

  /* General image and container responsiveness */
  .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;
  }
}

/* No products grid on FAQ page, so no specific mobile rule for it needed. */
/* No article-body for a long SEO text section here, so no specific mobile rule for it needed beyond general text/container rules. */