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

.page-huong-dan-nap-rut__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-huong-dan-nap-rut__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
    background-color: #f0f2f5; /* Light background for hero section */
}

.page-huong-dan-nap-rut__hero-image {
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
}

.page-huong-dan-nap-rut__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover for desktop */
    aspect-ratio: 16/9;
    min-width: 200px;
    min-height: 200px;
}

.page-huong-dan-nap-rut__hero-content {
    padding: 30px 20px;
    max-width: 900px;
    margin-top: -80px; /* Overlap slightly for visual effect, but text is below image */
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
}

.page-huong-dan-nap-rut__main-title {
    font-size: clamp(28px, 4vw, 48px); /* H1 font size with clamp */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
}

.page-huong-dan-nap-rut__hero-description {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-huong-dan-nap-rut__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 100%; /* Ensure container does not overflow */
    box-sizing: border-box;
    overflow: hidden;
}

.page-huong-dan-nap-rut__btn-primary,
.page-huong-dan-nap-rut__btn-secondary,
.page-huong-dan-nap-rut a[class*="btn"] {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-huong-dan-nap-rut__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button color */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
}

.page-huong-dan-nap-rut__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(229, 57, 53, 0.6);
    opacity: 0.9;
}

.page-huong-dan-nap-rut__btn-secondary {
    background: #ffffff;
    color: #E53935; /* Main color */
    border: 2px solid #E53935;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-huong-dan-nap-rut__btn-secondary--light {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: #ffffff;
}

.page-huong-dan-nap-rut__btn-secondary--light:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* General Section Styles */
.page-huong-dan-nap-rut__content-area {
    padding: 40px 0;
    margin-bottom: 30px;
}

.page-huong-dan-nap-rut__section-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: #E53935; /* Main color */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}