/* General styles for the page-tai-xiu scope */
.page-tai-xiu {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text on light body background #F5F7FA */
  line-height: 1.6;
  background-color: #F5F7FA; /* Consistent with body background type */
}

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

.page-tai-xiu__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-tai-xiu__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #E53935; /* Brand primary color for titles */
}

.page-tai-xiu__section-title--white {
  color: #ffffff;
}

.page-tai-xiu__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-tai-xiu__section-description--white {
  color: #f0f0f0;
}

.page-tai-xiu__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #E53935;
}

/* Hero Section */
.page-tai-xiu__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #E53935; /* Fallback background */
  overflow: hidden;
}

.page-tai-xiu__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for desktop hero */
  overflow: hidden;
}

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

.page-tai-xiu__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  width: 100%;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-tai-xiu__main-title {
  font-size: clamp(32px, 4vw, 48px); /* H1 font-size clamp */
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-tai-xiu__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-tai-xiu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrap for mobile */
}

.page-tai-xiu__cta-buttons--center {
  margin-top: 40px;
}