.page-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-faq__hero-section {
  padding-top: 10px; /* Adjusted for shared body padding-top */
  padding-bottom: 40px;
  background-color: #B71C1C;
  position: relative;
  overflow: hidden;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-faq__hero-content {
  background: linear-gradient(180deg, rgba(255, 245, 225, 0.95) 0%, rgba(255, 245, 225, 0.9) 100%);
  padding: 30px 0;
  text-align: center;
  color: #333333;
  border-radius: 10px;
  margin: -60px auto 0;
  position: relative;
  z-index: 1;
  max-width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-faq__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #7A0E0E;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-faq__hero-description {
  font-size: 1.1em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

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

.page-faq__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

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

.page-faq__btn-secondary {
  background: #B71C1C;
  color: #FFF5E1;
  border: 2px solid #F2B544;
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.4);
}

.page-faq__btn-secondary:hover {
  background: #7A0E0E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.6);
}

.page-faq__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-faq__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-faq__intro-section,
.page-faq__accordion-section,
.page-faq__conclusion-section {
  padding: 60px 0;
}

.page-faq__dark-section {
  background-color: #B71C1C;
  color: #FFF5E1;
}

.page-faq__light-bg {
  background-color: #FFF5E1;
  color: #333333;
}

.page-faq__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
  color: #FFF5E1;
}

.page-faq__light-bg .page-faq__section-title {
  color: #7A0E0E;
}

.page-faq__section-description {
  font-size: 1.05em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #FFF5E1;
}

.page-faq__light-bg .page-faq__section-description {
  color: #333333;
}

.page-faq__accordion-section {
  background-color: #FFF5E1;
}

.page-faq__faq-item {
  background-color: #D32F2F; /* Card BG */
  border: 1px solid #F2B544; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF5E1; /* Text Main */
}

.page-faq__faq-item details {
    margin: 0;
    padding: 0;
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: #C91F17; /* Main color as question header background */
  color: #FFF5E1;
  list-style: none;
  border-bottom: 1px solid rgba(242, 181, 68, 0.3);
  transition: background-color 0.3s ease;
}

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

.page-faq__faq-question:hover {
  background-color: #E53935;
}

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

.page-faq__faq-toggle {
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1;
  margin-left: 15px;
}

.page-faq__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: #FFF5E1;
  background-color: #D32F2F; /* Card BG */
}

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

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

.page-faq__image-inline {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-faq__cta-buttons--small {
    margin-top: 20px;
    gap: 10px;
}

/* General image styling to ensure minimum size */
.page-faq img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-faq__hero-image-wrapper {
    height: 350px;
  }

  .page-faq__hero-content {
    max-width: 95%;
    margin: -40px auto 0;
  }

  .page-faq__main-title {
    font-size: clamp(1.8em, 4.5vw, 2.8em);
  }

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

  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    width: 80%;
    margin: 0 auto;
  }

  .page-faq__section-title {
    font-size: clamp(1.6em, 3.8vw, 2.5em);
  }

  .page-faq__faq-question {
    font-size: 1.05em;
    padding: 18px 20px;
  }

  .page-faq__faq-answer {
    padding: 18px 20px;
  }
}

@media (max-width: 768px) {
  .page-faq {
    font-size: 16px;
    line-height: 1.6;
  }

  /* HERO 主图区域 */
  .page-faq__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-faq__hero-image-wrapper {
    height: 250px !important;
  }

  .page-faq__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-faq__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: -30px auto 0 !important;
    padding: 20px 15px !important;
  }

  .page-faq__main-title {
    font-size: 1.8em !important;
    margin-bottom: 15px;
  }

  .page-faq__hero-description {
    font-size: 0.95em !important;
    margin-bottom: 20px;
  }

  /* 按钮与按钮容器 */
  .page-faq__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 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;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 !important; /* Reset margin for full width */
  }
  
  .page-faq__cta-buttons--small {
      flex-direction: column !important;
      gap: 10px !important;
      padding-left: 0;
      padding-right: 0;
  }

  /* 通用图片与容器 */
  .page-faq__section,
  .page-faq__card,
  .page-faq__container,
  .page-faq__intro-section,
  .page-faq__accordion-section,
  .page-faq__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* 其他内容模块 (FAQ items, sections) */
  .page-faq__section-title {
    font-size: 1.6em !important;
    margin-bottom: 20px;
  }

  .page-faq__section-description {
    font-size: 0.95em !important;
    margin-bottom: 15px;
  }

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

  .page-faq__faq-question {
    font-size: 1em !important;
    padding: 15px 18px !important;
  }

  .page-faq__faq-answer {
    padding: 15px 18px !important;
    font-size: 0.95em !important;
  }

  /* No dedicated 'product display area' for FAQ, so apply general image rules */
  /* If there were, it would look something like this: */
  /*
  .page-faq__products-grid {
    grid-template-columns: 1fr !important; 
    gap: 15px !important;
  }
  .page-faq__product-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  */
}