/* style/blog-huong-dan-dang-ky-88cc.css */
/* Base styles for the page */
.page-blog-huong-dan-dang-ky-88cc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Main text color on dark background */
  background-color: #0D0E12; /* Explicit background color from custom scheme */
}

/* Container for main content to center and limit width */
.page-blog-huong-dan-dang-ky-88cc__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

/* Section titles */
.page-blog-huong-dan-dang-ky-88cc__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #FF8C1A; /* Primary color for titles */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Sub-titles */
.page-blog-huong-dan-dang-ky-88cc__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #FFA53A; /* Secondary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Paragraphs */
.page-blog-huong-dan-dang-ky-88cc p {
  margin-bottom: 1em;
  color: #FFF3E6;
}

/* List items */
.page-blog-huong-dan-dang-ky-88cc ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #FFF3E6;
}
.page-blog-huong-dan-dang-ky-88cc li {
  margin-bottom: 0.5em;
}

/* Links (general) */
.page-blog-huong-dan-dang-ky-88cc a {
  color: #FFA53A;
  text-decoration: none;
}
.page-blog-huong-dan-dang-ky-88cc a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-blog-huong-dan-dang-ky-88cc__hero-section {
  padding-top: 10px; /* Small top padding, assuming body has padding-top from shared.css */
  padding-bottom: 60px;
  background-color: #0D0E12; /* Ensure dark background */
  color: #FFF3E6;
}

.page-blog-huong-dan-dang-ky-88cc__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px;
  gap: 40px;
}

.page-blog-huong-dan-dang-ky-88cc__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #FFF3E6;
}

.page-blog-huong-dan-dang-ky-88cc__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive H1 size */
  font-weight: 700;
  color: #FF8C1A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-huong-dan-dang-ky-88cc__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-blog-huong-dan-dang-ky-88cc__hero-image {
  flex: 1 1 45%;
  text-align: center;
  min-width: 300px;
}

.page-blog-huong-dan-dang-ky-88cc__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.page-blog-huong-dan-dang-ky-88cc__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap */
}

.page-blog-huong-dan-dang-ky-88cc__cta-buttons--single {
  justify-content: center;
}

.page-blog-huong-dan-dang-ky-88cc__btn-primary,
.page-blog-huong-dan-dang-ky-88cc__btn-secondary,
.page-blog-huong-dan-dang-ky-88cc a[class*="button"],
.page-blog-huong-dan-dang-ky-88cc a[class*="btn"] {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
}

.page-blog-huong-dan-dang-ky-88cc__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Custom button color */
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.4);
}

.page-blog-huong-dan-dang-ky-88cc__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 140, 26, 0.6);
}

.page-blog-huong-dan-dang-ky-88cc__btn-secondary {
  background: #17191F; /* Card BG color */
  color: #FFA53A; /* Secondary color for text */
  border: 2px solid #FFA53A;
  box-shadow: 0 4px 10px rgba(255, 165, 58, 0.2);
}