/* style/blog-how-to-identify-reputable-tai-xiu.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --login-button-color: #EA7C07;
}

.page-blog-how-to-identify-reputable-tai-xiu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background: var(--secondary-color);
}

.page-blog-how-to-identify-reputable-tai-xiu__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-blog-how-to-identify-reputable-tai-xiu__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-how-to-identify-reputable-tai-xiu__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-identify-reputable-tai-xiu__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-how-to-identify-reputable-tai-xiu__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-how-to-identify-reputable-tai-xiu__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-color-light);
  margin-bottom: 20px;
  /* clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-how-to-identify-reputable-tai-xiu__intro-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-blog-how-to-identify-reputable-tai-xiu__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--login-button-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-identify-reputable-tai-xiu__cta-button:hover {
  background: #E56B00; /* Slightly darker orange */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-identify-reputable-tai-xiu__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: var(--secondary-color);
  color: var(--text-color-dark);
}

.page-blog-how-to-identify-reputable-tai-xiu__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-how-to-identify-reputable-tai-xiu__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-blog-how-to-identify-reputable-tai-xiu__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-how-to-identify-reputable-tai-xiu__feature-card {
  background: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-color-dark);
}

.page-blog-how-to-identify-reputable-tai-xiu__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-identify-reputable-tai-xiu__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-blog-how-to-identify-reputable-tai-xiu__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-how-to-identify-reputable-tai-xiu__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.page-blog-how-to-identify-reputable-tai-xiu__checklist,
.page-blog-how-to-identify-reputable-tai-xiu__advice-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-how-to-identify-reputable-tai-xiu__list-item {
  background: var(--secondary-color);
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  font-size: 1.1rem;
  color: var(--text-color-dark);
}

.page-blog-how-to-identify-reputable-tai-xiu__list-item strong {
  color: var(--primary-color);
}

.page-blog-how-to-identify-reputable-tai-xiu__cta-banner {
  background: linear-gradient(90deg, var(--primary-color) 0%, #007bff 100%);
  padding: 50px 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  color: var(--text-color-light);
}

.page-blog-how-to-identify-reputable-tai-xiu__cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color-light);
}

.page-blog-how-to-identify-reputable-tai-xiu__cta-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-blog-how-to-identify-reputable-tai-xiu__final-cta {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* FAQ styles */
details.page-blog-how-to-identify-reputable-tai-xiu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-blog-how-to-identify-reputable-tai-xiu__faq-item summary.page-blog-how-to-identify-reputable-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;
  color: var(--text-color-dark);
}
details.page-blog-how-to-identify-reputable-tai-xiu__faq-item summary.page-blog-how-to-identify-reputable-tai-xiu__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-how-to-identify-reputable-tai-xiu__faq-item summary.page-blog-how-to-identify-reputable-tai-xiu__faq-question:hover {
  background: #f5f5f5;
}
.page-blog-how-to-identify-reputable-tai-xiu__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-color-dark);
}
.page-blog-how-to-identify-reputable-tai-xiu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-how-to-identify-reputable-tai-xiu__faq-item .page-blog-how-to-identify-reputable-tai-xiu__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-color-dark);
}
details.page-blog-how-to-identify-reputable-tai-xiu__faq-item .page-blog-how-to-identify-reputable-tai-xiu__faq-answer p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-how-to-identify-reputable-tai-xiu__section-title {
    font-size: 2rem;
  }
  .page-blog-how-to-identify-reputable-tai-xiu__cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-identify-reputable-tai-xiu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-how-to-identify-reputable-tai-xiu__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-how-to-identify-reputable-tai-xiu__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-how-to-identify-reputable-tai-xiu__intro-description {
    font-size: 1rem;
  }

  .page-blog-how-to-identify-reputable-tai-xiu__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    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-blog-how-to-identify-reputable-tai-xiu__content-area {
    padding: 30px 15px;
  }

  .page-blog-how-to-identify-reputable-tai-xiu__section-title {
    font-size: 1.8rem;
  }

  .page-blog-how-to-identify-reputable-tai-xiu__paragraph {
    font-size: 1rem;
  }

  .page-blog-how-to-identify-reputable-tai-xiu__feature-card {
    padding: 20px;
  }

  .page-blog-how-to-identify-reputable-tai-xiu__feature-image {
    height: 200px;
  }

  .page-blog-how-to-identify-reputable-tai-xiu__feature-title {
    font-size: 1.3rem;
  }

  .page-blog-how-to-identify-reputable-tai-xiu__list-item {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-blog-how-to-identify-reputable-tai-xiu__cta-banner {
    padding: 40px 20px;
  }

  .page-blog-how-to-identify-reputable-tai-xiu__cta-title {
    font-size: 1.8rem;
  }

  .page-blog-how-to-identify-reputable-tai-xiu__cta-text {
    font-size: 1rem;
  }

  details.page-blog-how-to-identify-reputable-tai-xiu__faq-item summary.page-blog-how-to-identify-reputable-tai-xiu__faq-question { padding: 15px; }
  .page-blog-how-to-identify-reputable-tai-xiu__faq-qtext { font-size: 15px; }
  details.page-blog-how-to-identify-reputable-tai-xiu__faq-item .page-blog-how-to-identify-reputable-tai-xiu__faq-answer { padding: 0 15px 15px; }

  /* Image responsiveness */
  .page-blog-how-to-identify-reputable-tai-xiu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-how-to-identify-reputable-tai-xiu__section,
  .page-blog-how-to-identify-reputable-tai-xiu__card,
  .page-blog-how-to-identify-reputable-tai-xiu__container,
  .page-blog-how-to-identify-reputable-tai-xiu__cta-buttons,
  .page-blog-how-to-identify-reputable-tai-xiu__button-group,
  .page-blog-how-to-identify-reputable-tai-xiu__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important; /* For button groups */
    gap: 10px;
  }
  .page-blog-how-to-identify-reputable-tai-xiu__cta-buttons {
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-identify-reputable-tai-xiu__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .page-blog-how-to-identify-reputable-tai-xiu__section-title {
    font-size: 1.6rem;
  }
  .page-blog-how-to-identify-reputable-tai-xiu__cta-title {
    font-size: 1.6rem;
  }
}