.page-tai-xiu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-tai-xiu__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Main color gradient */
  color: #ffffff;
}

.page-tai-xiu__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 16px;
}

.page-tai-xiu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-tai-xiu__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-tai-xiu__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.page-tai-xiu__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-tai-xiu__cta-buttons--center {
  justify-content: center;
  margin-top: 30px;
}

.page-tai-xiu__btn-primary,
.page-tai-xiu__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-tai-xiu__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-tai-xiu__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-tai-xiu__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-tai-xiu__btn-secondary:hover {
  background: #f0f0f0;
  color: #2F6BFF;
  transform: translateY(-2px);
}

.page-tai-xiu__hero-image {
  flex: 1 1 50%;
  text-align: center;
  min-width: 300px;
}

.page-tai-xiu__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-tai-xiu__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 16px;
}

.page-tai-xiu__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
}

.page-tai-xiu__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tai-xiu__intro-section {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
}

.page-tai-xiu__feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-tai-xiu__feature-item {
  flex: 1 1 30%;
  max-width: 350px;
  text-align: center;
  padding: 20px;
  background-color: #ffffff; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-width: 280px;
}

.page-tai-xiu__feature-item:hover {
  transform: translateY(-5px);
}

.page-tai-xiu__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #D6E2FF; /* Border */
  box-shadow: 0 0 0 6px #A5C4FF; /* Glow */
}

.page-tai-xiu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-tai-xiu__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-tai-xiu__feature-description {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
}

.page-tai-xiu__guide-section {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Main color gradient */
  color: #ffffff;
}

.page-tai-xiu__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-tai-xiu__guide-item {
  background-color: #ffffff; /* Card BG */
  color: #1F2D3D; /* Text Main */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.page-tai-xiu__guide-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-tai-xiu__guide-step-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-tai-xiu__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-tai-xiu__strategy-section {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
}

.page-tai-xiu__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-tai-xiu__strategy-item {
  background-color: #ffffff; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #2F6BFF;
}

.page-tai-xiu__strategy-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-tai-xiu__strategy-item-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-tai-xiu__strategy-image {
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 40px auto 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-tai-xiu__promo-section {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Main color gradient */
  color: #ffffff;
}

.page-tai-xiu__promo-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-tai-xiu__card {
  flex: 1 1 30%;
  max-width: 350px;
  background-color: #ffffff; /* Card BG */
  color: #1F2D3D; /* Text Main */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 280px;
}

.page-tai-xiu__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-tai-xiu__card-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-tai-xiu__promo-image {
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 40px auto 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-tai-xiu__trust-section {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
}

.page-tai-xiu__trust-points {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-tai-xiu__trust-item {
  background-color: #ffffff; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-tai-xiu__trust-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-tai-xiu__trust-item-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-tai-xiu__trust-image {
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 40px auto 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-tai-xiu__faq-section {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Main color gradient */
  color: #ffffff;
}

.page-tai-xiu__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.page-tai-xiu__faq-item {
  background-color: #ffffff; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #1F2D3D; /* Text Main */
}

.page-tai-xiu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2F6BFF;
  cursor: pointer;
  list-style: none;
  user-select: none;
  position: relative;
}

.page-tai-xiu__faq-question::-webkit-details-marker,
.page-tai-xiu__faq-question::marker {
  display: none;
}

.page-tai-xiu__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-tai-xiu__faq-item[open] .page-tai-xiu__faq-toggle {
  transform: rotate(45deg);
}

.page-tai-xiu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-tai-xiu__cta-final-section {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  text-align: center;
}

.page-tai-xiu__cta-final-content {
  padding: 80px 16px;
}

.page-tai-xiu__cta-final-content .page-tai-xiu__section-title {
  margin-bottom: 20px;
}

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

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-tai-xiu__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-tai-xiu__hero-content {
    text-align: center;
  }

  .page-tai-xiu__cta-buttons {
    justify-content: center;
  }

  .page-tai-xiu__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .page-tai-xiu__description {
    font-size: 1rem;
  }

  .page-tai-xiu__feature-item,
  .page-tai-xiu__card {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .page-tai-xiu__guide-steps,
  .page-tai-xiu__strategy-list,
  .page-tai-xiu__trust-points {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

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

  .page-tai-xiu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-tai-xiu__hero-container {
    padding: 30px 15px;
    gap: 30px;
  }

  .page-tai-xiu__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-tai-xiu__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-tai-xiu__cta-buttons {
    flex-direction: column !important;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tai-xiu__btn-primary,
  .page-tai-xiu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-tai-xiu__hero-image {
    order: -1; /* Move image above content on mobile */
  }

  .page-tai-xiu__hero-side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-tai-xiu__content-area {
    padding: 40px 15px;
  }

  .page-tai-xiu__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-tai-xiu__text-block {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* Module 1: Three-column round images */
  .page-tai-xiu__feature-list {
    flex-direction: column;
    gap: 20px;
  }

  .page-tai-xiu__feature-item {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 20px 15px;
  }

  .page-tai-xiu__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }

  .page-tai-xiu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-tai-xiu__feature-title {
    font-size: 1.2rem;
  }

  .page-tai-xiu__feature-description {
    font-size: 0.9rem;
  }

  /* Guide section */
  .page-tai-xiu__guide-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-tai-xiu__guide-item {
    padding: 25px 20px;
  }

  .page-tai-xiu__guide-step-title {
    font-size: 1.3rem;
  }

  /* Strategy section */
  .page-tai-xiu__strategy-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-tai-xiu__strategy-item {
    padding: 20px 15px;
  }

  .page-tai-xiu__strategy-item-title {
    font-size: 1.2rem;
  }

  /* Promo section */
  .page-tai-xiu__promo-cards {
    flex-direction: column;
    gap: 20px;
  }

  .page-tai-xiu__card {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 25px 20px;
  }

  .page-tai-xiu__card-title {
    font-size: 1.2rem;
  }

  /* Trust section */
  .page-tai-xiu__trust-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-tai-xiu__trust-item {
    padding: 20px 15px;
  }

  .page-tai-xiu__trust-item-title {
    font-size: 1.2rem;
  }

  /* FAQ section */
  .page-tai-xiu__faq-list {
    margin-top: 30px;
  }

  .page-tai-xiu__faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .page-tai-xiu__faq-toggle {
    font-size: 1.5rem;
  }

  .page-tai-xiu__faq-answer {
    padding: 0 20px 18px;
    font-size: 0.95rem;
  }

  /* General image rules for mobile */
  .page-tai-xiu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-tai-xiu__section,
  .page-tai-xiu__card,
  .page-tai-xiu__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tai-xiu__cta-final-content {
    padding: 60px 15px;
  }
}