
        /* ========== RESET & BASE STYLES ========== */
        :root {
            --primary-color: #28a745;
            --primary-dark: #218838;
            --primary-light: #d4edda;
            --text-color: #333;
            --text-muted: #6c757d;
            --light-gray: #f8f9fa;
            --border-color: #dee2e6;
            --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-main);
            color: var(--text-color);
            line-height: 1.6;
            background-color: #fff;
        }
        
        /* ========== NAVBAR STYLES ========== */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            height: 70px;
        }
        
        /* Reset hoàn toàn list style cho navbar */
        .navbar-nav {
            list-style: none;
            padding-left: 0;
        }
        
        .nav-item {
            list-style: none;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            display: block;
            padding: 0.5rem 1rem;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .nav-link.active:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .btn-rent {
            background-color: var(--primary-color);
            color: white;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-rent:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* ========== TYPOGRAPHY ========== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text-color);
        }
        
        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.75rem; }
        h4 { font-size: 1.5rem; }
        h5 { font-size: 1.25rem; }
        h6 { font-size: 1rem; }
        
        p {
            margin-bottom: 1rem;
        }
        
        .lead {
            font-size: 1.25rem;
            font-weight: 300;
        }
        
        .text-muted {
            color: var(--text-muted) !important;
        }
        
        /* ========== LINKS ========== */
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        /* Links in text content */
        .content a {
            color: var(--primary-color);
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-color: rgba(40, 167, 69, 0.3);
        }
        
        .content a:hover {
            text-decoration-color: var(--primary-color);
        }
        
        /* ========== LISTS (cho nội dung thông thường) ========== */
        ul, ol {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }
        
        ul {
            list-style-type: none;
        }
        
        ul li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        /* Chỉ áp dụng bullet cho list thông thường, không áp dụng cho navbar */
        .content ul li:before {
            content: "•";
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
            line-height: 1;
        }
        
        /* ========== BUTTONS ========== */
        .btn {
            display: inline-block;
            font-weight: 500;
            text-align: center;
            white-space: nowrap;
            vertical-align: middle;
            user-select: none;
            border: 1px solid transparent;
            padding: 0.5rem 1.25rem;
            font-size: 1rem;
            line-height: 1.5;
            border-radius: 0.25rem;
            transition: all 0.3s ease;
        }
        
        .btn-success {
            background-color: var(--primary-color);
            color: white;
        }
        
        .btn-success:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline-success {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn-outline-success:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* ========== FORMS ========== */
        .form-control, .form-select {
            display: block;
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            line-height: 1.5;
            color: var(--text-color);
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid var(--border-color);
            border-radius: 0.25rem;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
        }
        
        label {
            display: inline-block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        /* ========== CARDS ========== */
        .card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-width: 0;
            word-wrap: break-word;
            background-color: #fff;
            background-clip: border-box;
            border: 1px solid rgba(0, 0, 0, 0.125);
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        /* ========== UTILITY CLASSES ========== */
        .bg-light {
            background-color: var(--light-gray) !important;
        }
        
        .rounded {
            border-radius: 0.5rem !important;
        }
        
        .shadow-sm {
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
        }
        
        /* ========== RESPONSIVE ADJUSTMENTS ========== */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 20px 0;
            }
            
            .nav-link {
                margin: 5px 0;
                padding: 0.5rem 0;
            }
            
            /* Đảm bảo dropdown menu không có bullet */
            .navbar-nav .dropdown-menu {
                list-style: none;
                padding-left: 1rem;
            }
        }
        
        @media (max-width: 767.98px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.5rem; }
            
            .lead {
                font-size: 1.1rem;
            }
            
            .navbar-brand img {
                height: 50px;
            }
        }


    .car-section .car-name{
        font-size: 18px;
    }  
    /* ========== BENEFITS SECTION ========== */
    .benefit-card {
        border-radius: 10px;
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .benefit-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }
    /* Style cho bảng giá */
    #pricing table {
        font-size: 0.95rem;
    }
    
    #pricing th {
        white-space: nowrap;
        font-weight: 600;
    }
    
    #pricing td, #pricing th {
        vertical-align: middle;
        padding: 12px 15px;
    }
    
    #pricing tr:hover {
        background-color: rgba(40, 167, 69, 0.05) !important;
    }
    
    .table-success {
        background-color: var(--primary-light);
    }
    
    @media (max-width: 767.98px) {
        #pricing .table-responsive {
            border: 0;
        }
        
        #pricing table {
            font-size: 0.85rem;
        }
        
        #pricing td, #pricing th {
            padding: 8px 10px;
        }
    }

    #rental-procedure .card {
        transition: all 0.3s ease;
    }
    
    #rental-procedure .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }
    
    #rental-procedure ul li {
        position: relative;
        padding-left: 0;
    }
    
    @media (max-width: 767.98px) {
        #rental-procedure .d-flex {
            flex-direction: column;
        }
        
        #rental-procedure .flex-shrink-0 {
            margin-bottom: 1rem;
            margin-right: 0 !important;
        }
    }

    .hero-section {
        background-color: #f8f9fa;
        background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('image/hero-section.avif');
        background-size: cover;
        background-position: center;
    }
    
    .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }



        /* Style cho section bài viết */
        #latest-posts .card {
            transition: all 0.3s ease;
        }
        
        #latest-posts .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        }
        
        #latest-posts .card-img-top {
            height: 180px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        #latest-posts .card:hover .card-img-top {
            transform: scale(1.03);
        }
        
        #latest-posts .card-title a {
            transition: color 0.2s ease;
        }
        
        #latest-posts .card-title a:hover {
            color: var(--primary-color) !important;
            text-decoration: none;
        }
        
        #latest-posts .btn-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        #latest-posts .btn-link i {
            transition: transform 0.3s ease;
        }
        
        #latest-posts .btn-link:hover {
            color: var(--primary-dark) !important;
        }
        
        #latest-posts .btn-link:hover i {
            transform: translateX(3px);
        }
        
        .badge.bg-success {
            font-weight: 500;
        }
        
        @media (max-width: 767.98px) {
            #latest-posts .col-md-6 {
                margin-bottom: 1.5rem;
            }
            
            #latest-posts .card-img-top {
                height: 160px;
            }
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(rgba(40, 167, 69, 0.9), rgba(33, 136, 56, 0.9));
            color: white;
        }




            .div_hotline_float {
                position: fixed !important;
                left: 1%;
                bottom: 15px;
                transition: opacity 1s;
                z-index: 900;
            }
 
            footer a:hover {
                color: var(--primary-color) !important;
                transition: all 0.3s ease;
            }
            
            footer hr {
                opacity: 0.1;
            }
            
            .social-icons a {
                display: inline-block;
                width: 36px;
                height: 36px;
                background-color: rgba(255,255,255,0.1);
                border-radius: 50%;
                text-align: center;
                line-height: 36px;
                transition: all 0.3s ease;
            }
            
            .social-icons a:hover {
                background-color: var(--primary-color);
                transform: translateY(-3px);
            }
            /* Contact Page Styles */
            .contact-info .d-flex {
                transition: all 0.3s ease;
            }
            
            .contact-info .d-flex:hover {
                transform: translateX(5px);
            }
            
            .contact-info a {
                color: #333;
                transition: color 0.3s ease;
            }
            
            .contact-info a:hover {
                color: var(--primary-color);
            }
            
            .social-media a div {
                transition: all 0.3s ease;
            }
            
            .social-media a:hover div {
                background-color: var(--primary-color) !important;
                color: white !important;
                transform: translateY(-3px);
            }
            
            /* Form Styles */
            .card {
                border-radius: 10px !important;
            }
            
            .form-control, .form-select {
                border: 1px solid #dee2e6;
                transition: all 0.3s ease;
            }
            
            .form-control:focus, .form-select:focus {
                border-color: var(--primary-color);
                box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
            }
            
            textarea.form-control {
                min-height: 150px;
            }
            
            .btn-success {
                transition: all 0.3s ease;
            }
            
            .btn-success:hover {
                background-color: var(--primary-dark);
                transform: translateY(-2px);
            }
            
            @media (max-width: 767.98px) {
                .pe-lg-5 {
                    padding-right: 0 !important;
                    margin-bottom: 3rem;
                }
                
                .social-media .d-flex {
                    justify-content: center;
                }
            }

            .breadcrumb {
                background-color: transparent;
                padding: 0;
            }
            
            .breadcrumb-item a {
                color: var(--primary-color);
                text-decoration: none;
            }
            
            .breadcrumb-item.active {
                color: #6c757d;
            }
            
            .breadcrumb-item+.breadcrumb-item::before {
                content: "›";
                padding: 0 8px;
            }

                .blog-content h3 {
                    margin-top: 2rem;
                }
                
                .blog-content img {
                    max-width: 100%;
                    height: auto;
                }
                
                .share-buttons a {
                    transition: color 0.3s ease;
                }
                
                .share-buttons a:hover {
                    color: var(--primary-color) !important;
                }
                
                .comment-content {
                    border-left: 2px solid var(--primary-light);
                    padding-left: 1rem;
                }
                
                @media (max-width: 767.98px) {
                    .author-box .d-flex {
                        flex-direction: column;
                    }
                    
                    .author-box img {
                        margin-bottom: 1rem;
                        margin-right: 0 !important;
                    }
                }
                /* Blog List Styles */
                .card-img-top {
                    height: 200px;
                    object-fit: cover;
                    transition: transform 0.3s ease, opacity 0.3s ease;
                }
                
                .card {
                    transition: all 0.3s ease;
                    border-radius: 8px !important;
                    overflow: hidden;
                }
                
                .card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
                }
                
                .card:hover .card-img-top {
                    transform: scale(1.03);
                    opacity: 0.9;
                }
                
                .card-title {
                    font-size: 1.1rem;
                    line-height: 1.4;
                    transition: color 0.2s ease;
                    margin-bottom: 0.75rem;
                }
                
                .card-title a {
                    color: #333;
                    text-decoration: none;
                }
                
                .card-title a:hover {
                    color: var(--primary-color);
                }
                
                .card-text {
                    font-size: 0.9rem;
                    margin-bottom: 1rem;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                
                .btn-link {
                    position: relative;
                    padding-right: 0;
                    transition: all 0.3s ease;
                }
                
                .btn-link:hover {
                    color: var(--primary-dark) !important;
                }
                
                .btn-link i {
                    transition: transform 0.3s ease;
                }
                
                .btn-link:hover i {
                    transform: translateX(3px);
                }
                
                .badge {
                    font-size: 0.75rem;
                    font-weight: 500;
                    padding: 4px 8px;
                }
                
                /* Pagination Styles */
                .pagination {
                    margin-top: 3rem;
                }
                
                .page-item.active .page-link {
                    background-color: var(--primary-color);
                    border-color: var(--primary-color);
                }
                
                .page-link {
                    color: var(--primary-color);
                    border: 1px solid #dee2e6;
                    padding: 0.5rem 0.9rem;
                    margin: 0 3px;
                    border-radius: 4px !important;
                    transition: all 0.3s ease;
                }
                
                .page-link:hover {
                    color: var(--primary-dark);
                    background-color: #f8f9fa;
                    border-color: #dee2e6;
                }
                
                .page-item:first-child .page-link,
                .page-item:last-child .page-link {
                    border-radius: 4px !important;
                }
                
                /* Responsive adjustments */
                @media (max-width: 767.98px) {
                    .card-img-top {
                        height: 180px;
                    }
                    
                    .card-title {
                        font-size: 1rem;
                    }
                    
                    .card-text {
                        -webkit-line-clamp: 2;
                    }
                }