.page-blog-huong-dan-dang-ky-cn3789 {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --main-bg: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  color: var(--text-main); /* Assuming body is dark from shared.css */
  background-color: var(--main-bg);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-huong-dan-dang-ky-cn3789__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-huong-dan-dang-ky-cn3789__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-huong-dan-dang-ky-cn3789__hero-image {
  width: 100%;
  height: 675px; /* Fixed height for desktop to maintain aspect ratio */
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.page-blog-huong-dan-dang-ky-cn3789__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area, cropping if necessary */
  display: block;
}

.page-blog-huong-dan-dang-ky-cn3789__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px 40px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image bottom */
  background: rgba(10, 10, 10, 0.7); /* Semi-transparent background for readability */
  border-radius: 10px;
  padding-top: 30px;
}

.page-blog-huong-dan-dang-ky-cn3789__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-huong-dan-dang-ky-cn3789__description {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-huong-dan-dang-ky-cn3789__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-huong-dan-dang-ky-cn3789__btn-primary,
.page-blog-huong-dan-dang-ky-cn3789__btn-secondary,
.page-blog-huong-dan-dang-ky-cn3789 a[class*="button"],
.page-blog-huong-dan-dang-ky-cn3789 a[class*="btn"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  max-width: 100%;
}

.page-blog-huong-dan-dang-ky-cn3789__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Dark text on gold button for contrast */
  border: none;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-huong-dan-dang-ky-cn3789__btn-primary:hover {
  background: linear-gradient(180deg, #FFE08A 0%, #E6AE2D 100%);
  box-shadow: 0 7px 20px rgba(242, 193, 78, 0.6);
  transform: translateY(-2px);
}

.page-blog-huong-dan-dang-ky-cn3789__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.3);
}

.page-blog-huong-dan-dang-ky-cn3789__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
  transform: translateY(-2px);
}