/* General styles for the page-huong-dan-choi */
.page-huong-dan-choi {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF3E6; /* Text Main color */
    background: #0D0E12; /* Background color */
}

.page-huong-dan-choi__content-area {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-huong-dan-choi__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #FF8C1A; /* Main brand color for titles */
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.page-huong-dan-choi p,
.page-huong-dan-choi li {
    color: #FFF3E6; /* Ensure text is visible on dark background */
    margin-bottom: 15px;
}

.page-huong-dan-choi ol,
.page-huong-dan-choi ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-huong-dan-choi strong {
    color: #FFA53A; /* Auxiliary color for emphasis */
}

.page-huong-dan-choi__text-link {
    color: #FFA53A; /* Auxiliary color for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-huong-dan-choi__text-link:hover {
    color: #FFB04D; /* Glow color on hover */
}

/* Hero Section */
.page-huong-dan-choi__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background: linear-gradient(180deg, rgba(13, 14, 18, 0.8) 0%, #0D0E12 100%);
    position: relative;
    overflow: hidden;
}

.page-huong-dan-choi__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.page-huong-dan-choi__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: left;
}

.page-huong-dan-choi__hero-title {
    font-size: 3.2em;
    font-weight: 900;
    color: #FF8C1A; /* Main brand color */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-huong-dan-choi__hero-description {
    font-size: 1.2em;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 30px;
    max-width: 600px;
}

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

.page-huong-dan-choi__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-huong-dan-choi__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border: none;
}

.page-huong-dan-choi__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 140, 26, 0.4);
}

.page-huong-dan-choi__btn-secondary {
    background: #17191F; /* Card BG */
    color: #FF8C1A; /* Main brand color */
    border: 2px solid #A84F0C; /* Border color */
}

.page-huong-dan-choi__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 140, 26, 0.2);
}

.page-huong-dan-choi__hero-image-container {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}