.page-faq {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background: #ffffff; /* Assuming body background is light/white, as per color scheme */
}

/* Hero Section */
.page-faq__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Explicit small top padding as required */
  padding-bottom: 50px; 
  background-color: #f5f5f5; /* Light background for hero section */
}

.page-faq__hero-image {
  width: 100%;
  height: 450px; /* Fixed height for desktop hero image */
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-faq__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover for desktop */
  display: block;
}

.page-faq__hero-content {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
  text-align: center;
}

.page-faq__main-title {
  font-size: 42px;
  font-weight: 700;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-faq__description {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

.page-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-faq__btn-primary,
.page-faq__btn-secondary,
.page-faq__inline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure buttons don't overflow */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-faq__btn-primary {
  background: #26A9E0; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-faq__btn-primary:hover {
  background: #1e87c0;
  border-color: #1e87c0;
}

.page-faq__btn-secondary {
  background: #ffffff;
  color: #26A9E0; /* Primary brand color */
  border: 2px solid #26A9E0;
}

.page-faq__btn-secondary:hover {
  background: #e0f2ff;
  color: #26A9E0;
}

/* Inline buttons within FAQ answers */
.page-faq__inline-btn {
  background: #EA7C07; /* Login color for inline CTA */
  color: #ffffff;
  border: 1px solid #EA7C07;
  padding: 8px 15px;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
}
.page-faq__inline-btn:hover {
  background: #c76706;
  border-color: #c76706;
}


/* Content Section */
.page-faq__section-spacing {
  padding: 60px 0;
}

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

.page-faq__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
}

.page-faq__section-intro {
  font-size: 17px;
  line-height: 1.6;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

/* FAQ List */
.page-faq__faq-list {
  margin-top: 30px;
}

details.page-faq__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
details.page-faq__faq-item:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
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;
  background-color: #f9f9f9;
}
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: #f0f0f0;
}
.page-faq__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-faq__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #26A9E0;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}
details.page-faq__faq-item .page-faq__faq-answer {
  padding: 0 25px 20px;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
  color: #555555;
  line-height: 1.7;
  font-size: 16px;
}
.page-faq__faq-answer p {
  margin-bottom: 15px;
}
.page-faq__faq-answer p:last-child {
  margin-bottom: 0;
}
.page-faq__faq-answer strong {
  color: #26A9E0;
}


/* CTA Section (Dark Background) */
.page-faq__cta-section {
  background: #26A9E0; /* Primary brand color for dark section */
  color: #ffffff; /* White text for dark background */
  text-align: center;
}

.page-faq__cta-content {
  max-width: 800px;
}

.page-faq__cta-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-faq__cta-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}


/* General Image Styling (for content images, if any) */
.page-faq img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevents extra space below images */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq__main-title {
    font-size: 38px;
  }
  .page-faq__section-title {
    font-size: 32px;
  }
  .page-faq__cta-title {
    font-size: 34px;
  }
  .page-faq__hero-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  /* 1. HERO 主图区域 */
  .page-faq__hero-section {
    padding-top: 10px; /* Explicit small top padding */
    padding-bottom: 30px;
  }
}