.page-tai-xiu {
  font-family: Arial, sans-serif;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
  line-height: 1.6;
  font-size: 16px;
}

/* Hero Section */
.page-tai-xiu__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #7A0E0E 0%, #B71C1C 100%); /* Deep Red to Background */
}

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

.page-tai-xiu__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF5E1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tai-xiu__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #FFF5E1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-tai-xiu__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-tai-xiu__hero-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #333333; /* Dark text for light gold button */
  border: none;
}

.page-tai-xiu__hero-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-tai-xiu__hero-button--secondary {
  background: #C91F17; /* Main Color */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border */
}

.page-tai-xiu__hero-button--secondary:hover {
  background: #E53935; /* Auxiliary Color */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-tai-xiu__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-tai-xiu__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* General Section Styling */
.page-tai-xiu__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: #B71C1C; /* Background */
}

.page-tai-xiu__section--dark {
  background-color: #7A0E0E; /* Deep Red */
}

.page-tai-xiu__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  color: #F4D34D; /* Gold */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-tai-xiu__section-subtitle {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #FFCC66; /* Glow */
}

.page-tai-xiu__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-tai-xiu__content-block {
  text-align: left;
  margin-bottom: 40px;
}

.page-tai-xiu__content-block p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #FFF5E1; /* Text Main */
}

.page-tai-xiu__content-block ul {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #FFF5E1; /* Text Main */
}

.page-tai-xiu__content-block li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-tai-xiu__cta-button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-tai-xiu__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-tai-xiu__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #333333;
  border: none;
}

.page-tai-xiu__cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-tai-xiu__cta-button--secondary {
  background: #C91F17;
  color: #FFF5E1;
  border: 2px solid #F2B544;
}

.page-tai-xiu__cta-button--secondary:hover {
  background: #E53935;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Image specific styles */
.page-tai-xiu__image-wrapper {
  margin: 40px auto;
  max-width: 800px; /* Example max width for content images */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-color: #D32F2F; /* Card BG */
  padding: 15px;
  box-sizing: border-box;
}

.page-tai-xiu__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

/* FAQ Section */
.page-tai-xiu__faq-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
}

details.page-tai-xiu__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
details.page-tai-xiu__faq-item summary.page-tai-xiu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
  font-size: 1.1em;
  color: #FFF5E1; /* Text Main */
}
details.page-tai-xiu__faq-item summary.page-tai-xiu__faq-question::-webkit-details-marker {
  display: none;
}
details.page-tai-xiu__faq-item summary.page-tai-xiu__faq-question:hover {
  background: #C91F17; /* Main Color */
}
.page-tai-xiu__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF5E1; /* Text Main */
}
.page-tai-xiu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-tai-xiu__faq-item .page-tai-xiu__faq-answer {
  padding: 0 20px 20px;
  background: #C91F17; /* Main Color */
  border-radius: 0 0 10px 10px;
  color: #FFF5E1; /* Text Main */
  text-align: left;
}
.page-tai-xiu__faq-answer p {
  margin-bottom: 0;
  font-size: 1.0em;
}

/* Global image responsive rules for content area */
.page-tai-xiu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .page-tai-xiu__hero-title {
    font-size: 2.8em;
  }
  .page-tai-xiu__section-title {
    font-size: 2.2em;
  }
  .page-tai-xiu__section-subtitle {
    font-size: 1.6em;
  }
  .page-tai-xiu__hero-button,
  .page-tai-xiu__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-tai-xiu {
    overflow-x: hidden; /* Ensure no horizontal scroll */
  }
  /* HERO 主图区域 */
  .page-tai-xiu__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
  }
  .page-tai-xiu__hero-image img {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
  }
  .page-tai-xiu__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-tai-xiu__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-tai-xiu__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-tai-xiu__hero-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 通用图片与容器 */
  .page-tai-xiu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-tai-xiu__container,
  .page-tai-xiu__image-wrapper,
  .page-tai-xiu__content-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-tai-xiu__section {
    padding: 40px 0;
  }
  .page-tai-xiu__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-tai-xiu__section-subtitle {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-tai-xiu__content-block p,
  .page-tai-xiu__content-block li {
    font-size: 0.95em;
  }
  
  /* 按钮与按钮容器 */
  .page-tai-xiu__cta-button-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-tai-xiu__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ Section */
  details.page-tai-xiu__faq-item summary.page-tai-xiu__faq-question { padding: 15px; }
  .page-tai-xiu__faq-qtext { font-size: 15px; }
  details.page-tai-xiu__faq-item .page-tai-xiu__faq-answer { padding: 0 15px 15px; }
}