.page-huong-dan-nap-rut {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
}

.page-huong-dan-nap-rut__hero-section {
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding */
    padding-bottom: 40px;
    background-color: #F4F7FB;
    text-align: center;
}

.page-huong-dan-nap-rut__hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    padding: 0 15px;
}

.page-huong-dan-nap-rut__hero-image {
    width: 100%;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.2);
}

.page-huong-dan-nap-rut__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-huong-dan-nap-rut__hero-text-content {
    max-width: 900px;
    margin-top: 20px;
}

.page-huong-dan-nap-rut__main-title {
    font-size: clamp(28px, 4vw, 48px);
    color: #1F2D3D;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-huong-dan-nap-rut__intro-text {
    font-size: 18px;
    color: #1F2D3D;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.page-huong-dan-nap-rut__btn-primary,
.page-huong-dan-nap-rut__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    min-width: 180px;
    text-align: center;
}

.page-huong-dan-nap-rut__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-huong-dan-nap-rut__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-huong-dan-nap-rut__btn-secondary {
    background: #FFFFFF;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-huong-dan-nap-rut__btn-secondary:hover {
    background: #F0F5FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-huong-dan-nap-rut__section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.page-huong-dan-nap-rut__section-title {
    font-size: clamp(24px, 3.5vw, 38px);
    color: #1F2D3D;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.page-huong-dan-nap-rut__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6FA3FF 0%, #2F6BFF 100%);
    border-radius: 2px;
}

.page-huong-dan-nap-rut__section-description {
    font-size: 17px;
    color: #1F2D3D;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.page-huong-dan-nap-rut__content-block {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}