/* Base styles for the page */
.page-blog-huong-dan-dang-ky-at99 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-blog-huong-dan-dang-ky-at99__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-blog-huong-dan-dang-ky-at99__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 40px;
  background: linear-gradient(135deg, #017439, #005a2e);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.page-blog-huong-dan-dang-ky-at99__hero-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-huong-dan-dang-ky-at99__hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-huong-dan-dang-ky-at99__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-blog-huong-dan-dang-ky-at99__main-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFF00; /* Register and login font color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-blog-huong-dan-dang-ky-at99__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-blog-huong-dan-dang-ky-at99__btn-primary,
.page-blog-huong-dan-dang-ky-at99__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-huong-dan-dang-ky-at99__btn-primary {
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
  box-shadow: 0 4px 15px rgba(195, 8, 8, 0.4);
}

.page-blog-huong-dan-dang-ky-at99__btn-primary:hover {
  background: #a30606;
  border-color: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 8, 8, 0.5);
}

.page-blog-huong-dan-dang-ky-at99__btn-secondary {
  background: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-huong-dan-dang-ky-at99__btn-secondary:hover {
  background: #f0f0f0;
  color: #005a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}