          * {
            font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
        }
        
        :root {
            --primary-color: #C41E3A;
            --primary-dark: #A01628;
            --secondary-color: #FFE8EC;
            --accent-color: #FF6B8A;
            --text-dark: #2D1F1F;
            --text-light: #6B5555;
            --warm-bg: #FFF5F7;
        }
        
        body {
            scroll-behavior: smooth;
            color: var(--text-dark);
            background: white;
        }
li{
	border: none;
}
        
        .gradient-bg-red {
            background: linear-gradient(135deg, #C41E3A 0%, #E63E5A 100%);
        }
        
        .section-padding {
            padding: 5rem 1rem;
        }
        
        .card-hover {
            transition: all 0.4s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(196, 30, 58, 0.15);
        }
        
        .btn-primary {
            background: var(--primary-color);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
        }
        
        .nav-link {
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            font-weight: 500;
        }
        
        .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .sticky-nav {
            position: fixed !important;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999 !important;
            backdrop-filter: blur(15px);
            background: rgba(196, 30, 58, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .blog-card {
            background: white;
            border-radius: 20px;
            padding: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid var(--secondary-color);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            display: block;
        }
        
        .blog-card-image i {
            position: relative;
            z-index: 1;
        }
        
        .blog-card-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card-date {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
        }
        
        .blog-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }
        
        .blog-card-excerpt {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        
        .blog-card-link {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .blog-card-link:hover {
            color: var(--primary-dark);
            transform: translateX(5px);
        }
        
        .blog-category {
            display: inline-block;
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            z-index: 10;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 3rem;
        }
        
        .pagination a, .pagination span {
            padding: 0.75rem 1.25rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .pagination a {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--secondary-color);
        }
        
        .pagination a:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .pagination .current {
            background: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }
        
        .blog-hero {
            background: linear-gradient(135deg, rgba(196, 30, 58, 0.95) 0%, rgba(230, 62, 90, 0.95) 100%);
            padding: 8rem 1rem 8rem;
            text-align: center;
            color: white;
            position: relative;
            min-height: 300px;
        }
        
        .blog-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to bottom, transparent, white);
            z-index: 1;
        }
        
        .blog-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .mobile-menu {
            display: none;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .desktop-menu {
            display: none;
        }
        
        .mobile-menu-btn {
            display: inline-block;
        }
        
        @media (min-width: 768px) {
            .desktop-menu {
                display: flex !important;
            }
            .mobile-menu-btn {
                display: none !important;
            }
            #mobileMenu {
                display: none !important;
            }
        }
        
        /* Sidebar Styles */
        .blog-sidebar {
            padding-left: 2rem;
            border-left: 3px solid var(--primary-color);
        }
        
        /* Search Bar Styles */
        .blog-search {
            margin-bottom: 2rem;
        }
        
        .blog-search-form {
            position: relative;
        }
        
        .blog-search-input {
            width: 100%;
            padding: 1rem 3rem 1rem 1.5rem;
            border: 2px solid var(--secondary-color);
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }
        
        .blog-search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
        }
        
        .blog-search-button {
            position: absolute;
            right: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .blog-search-button:hover {
            background: var(--primary-dark);
            transform: translateY(-50%) scale(1.1);
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--secondary-color);
        }
        
        .sidebar-widget:last-child {
            margin-bottom: 0;
        }
        
        .sidebar-widget-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--secondary-color);
            display: flex;
            align-items: center;
        }
        
        .sidebar-widget-title i {
            margin-right: 0.75rem;
            font-size: 1.25rem;
        }
        
        .sidebar-category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .sidebar-category-list li {
            margin-bottom: 0.75rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--secondary-color);
        }
        
        .sidebar-category-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .sidebar-category-link {
            color: var(--text-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .sidebar-category-link:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .sidebar-category-count {
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .sidebar-post-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--secondary-color);
        }
        
        .sidebar-post-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .sidebar-post-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        
        .sidebar-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            display: block;
        }
        
        .sidebar-post-image img[src=""] {
            display: none;
        }
        
        .sidebar-post-content {
            flex: 1;
        }
        
        .sidebar-post-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        
        .sidebar-post-title a {
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .sidebar-post-title a:hover {
            color: var(--primary-color);
        }
        
        .sidebar-post-date {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        .blog-content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 1024px) {
            .blog-content-wrapper {
                grid-template-columns: 1fr 350px;
            }
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 1rem;
            }
            
            .blog-card-image {
                height: 200px;
            }
            
            .blog-hero {
                padding: 6rem 1rem 3rem;
            }
            
            .blog-content-wrapper {
                grid-template-columns: 1fr;
            }
            
            .blog-sidebar {
                padding-left: 0;
                padding-top: 2rem;
                border-left: none;
                border-top: 3px solid var(--primary-color);
                margin-top: 2rem;
            }
            
            /* Search bar nhỏ hơn trên mobile và đảm bảo ở trên cùng */
            .blog-sidebar {
                display: flex;
                flex-direction: column;
            }
            
            .blog-search {
                margin-bottom: 1.5rem;
                order: -1; /* Đảm bảo search bar ở trên cùng */
            }
            
            .blog-search-input {
                padding: 0.75rem 2.5rem 0.75rem 1.25rem;
                font-size: 0.9rem;
            }
            
            .blog-search-button {
                width: 2rem;
                height: 2rem;
                right: 0.4rem;
            }
            
            .blog-search-button i {
                font-size: 0.85rem;
            }
        }