.page-huong-dan-choi {
  font-family: Arial, sans-serif;
  color: var(--text-main-color, #FFF6D6); /* Default text color from custom palette */
  background-color: var(--bg-color, #0A0A0A); /* Default background color from custom palette */
}

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

.page-huong-dan-choi__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--card-bg-color, #111111);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-huong-dan-choi__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for desktop */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-huong-dan-choi__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop to fill space */
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-huong-dan-choi__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px 40px;
  box-sizing: border-box;
}

.page-huong-dan-choi__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--text-main-color, #FFF6D6);
}

.page-huong-dan-choi__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-main-color, #FFF6D6);
}

.page-huong-dan-choi__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-huong-dan-choi__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 211, 107, 0.4);
}

.page-huong-dan-choi__cta-button--secondary {
  background: var(--card-bg-color, #111111);
  color: var(--primary-color, #F2C14E);
  border: 2px solid var(--primary-color, #F2C14E);
}

.page-huong-dan-choi__cta-button--secondary:hover {
  background: var(--primary-color, #F2C14E);
  color: #ffffff;
}

.page-huong-dan-choi__section {
  padding: 60px 0;
  background-color: var(--bg-color, #0A0A0A);
}

.page-huong-dan-choi__section:nth-of-type(odd) {
  background-color: var(--card-bg-color, #111111);
}

.page-huong-dan-choi__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-color, #F2C14E);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-huong-dan-choi__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-main-color, #FFF6D6);
  text-align: justify;
}

.page-huong-dan-choi__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-huong-dan-choi__guide-step {
  background-color: var(--card-bg-color, #111111);
  border: 1px solid var(--border-color, #3A2A12);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-huong-dan-choi__step-title {
  font-size: 1.4rem;
  color: var(--primary-color, #F2C14E);
  margin-bottom: 15px;
}