.page-huong-dan-choi {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 50px;
}

.page-huong-dan-choi__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, assuming body has header offset */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-huong-dan-choi__hero-image {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-huong-dan-choi__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover the area, will be 'contain' on mobile */
  aspect-ratio: 16/9;
}

.page-huong-dan-choi__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px;
  z-index: 1; /* Ensure content is above image if any overlap */
}

.page-huong-dan-choi__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Primary color for title */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-huong-dan-choi__intro-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-huong-dan-choi__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-huong-dan-choi__btn-primary,
.page-huong-dan-choi__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-huong-choi__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-huong-dan-choi__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-huong-dan-choi__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Primary */
  border: 2px solid #F2C14E;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-huong-dan-choi__btn-secondary:hover {
  transform: translateY(-3px);
  background: #F2C14E;
  color: #111111;
}

.page-huong-dan-choi__section {
  padding: 40px 0;
  margin-bottom: 30px;
}