:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-dark: #26A9E0; /* Using primary color as a dark background for some elements */
  --border-light: #e0e0e0;
  --login-color: #EA7C07; /* Specific color for login as per custom config */
}

.page-blog-bi-quyet-choi-tai-xiu-hello88 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--bg-light); /* Explicitly setting for clarity */
}

/* Hero Section */
.page-blog-bi-quyet-choi-tai-xiu-hello88__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--bg-light);
}

.page-blog-bi-quyet-choi-tai-xiu-hello88__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
}

.page-blog-bi-quyet-choi-tai-xiu-hello88__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  color: var(--text-dark); /* Ensure dark text on light background */
}

.page-blog-bi-quyet-choi-tai-xiu-hello88__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
  max-width: 90%;
}

.page-blog-bi-quyet-choi-tai-xiu-hello88__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-blog-bi-quyet-choi-tai-xiu-hello88__hero-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}

.page-blog-bi-quyet-choi-tai-xiu-hello88__hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: block; /* Ensures proper spacing */
}

/* Call to Action Buttons */
.page-blog-bi-quyet-choi-tai-xiu-hello88__cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-bi-quyet-choi-tai-xiu-hello88__btn-primary,
.page-blog-bi-quyet-choi-tai-xiu-hello88__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-bi-quyet-choi-tai-xiu-hello88__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}