
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(35, 46, 60, 0.8), rgba(35, 46, 60, 0.8)), url('../img/blog/blog_hero.jpg') no-repeat center center/cover;
            padding: 120px 0 80px;
            color: var(--white);
            text-align: center;
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
        }
        
        .breadcrumb-item a {
            color: var(--sky-blue);
        }
        
        .breadcrumb-item.active {
            color: var(--white);
        }
        
        .breadcrumb-item+.breadcrumb-item::before {
            color: var(--white);
        }
        
        /* Section Padding */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--deep-blue);
            margin-top: 15px;
        }
        
        /* Blog Cards */
        .blog-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .blog-img {
            height: 250px;
            overflow: hidden;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-meta {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .blog-meta i {
            margin-right: 5px;
            color: var(--deep-blue);
        }
        
        .blog-meta span {
            margin-right: 15px;
        }
        
        .read-more {
            color: var(--deep-blue);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--sky-blue);
            transform: translateX(5px);
        }
        
        /* Sidebar */
        .sidebar-widget {
            background: var(--white);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .sidebar-title {
            position: relative;
            margin-bottom: 20px;
            padding-bottom: 10px;
        }
        
        .sidebar-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--deep-blue);
        }
        
        .categories-list {
            list-style: none;
            padding: 0;
        }
        
        .categories-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .categories-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .categories-list a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .categories-list a:hover {
            color: var(--deep-blue);
        }
        
        .categories-list .badge {
            background-color: var(--deep-blue);
            color: var(--white);
            border-radius: 20px;
            padding: 5px 10px;
            font-size: 0.8rem;
        }
        
        .recent-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-post-img {
            width: 80px;
            height: 80px;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .recent-post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .recent-post-content h6 {
            margin-bottom: 5px;
            font-size: 0.9rem;
        }
        
        .recent-post-content .date {
            color: var(--gray);
            font-size: 0.8rem;
        }
        
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag {
            background-color: #f8f9fa;
            color: var(--gray);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .tag:hover {
            background-color: var(--deep-blue);
            color: var(--white);
        }
        
        /* Pagination */
        .pagination {
            justify-content: center;
            margin-top: 40px;
        }
        
        .page-link {
            color: var(--deep-blue);
            border: 1px solid #dee2e6;
            padding: 10px 15px;
            margin: 0 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .page-link:hover {
            background-color: var(--deep-blue);
            color: var(--white);
            border-color: var(--deep-blue);
        }
        
        .page-item.active .page-link {
            background-color: var(--deep-blue);
            border-color: var(--deep-blue);
            color: var(--white);
        }

        
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .navbar-collapse {
                background-color: var(--dark-navy);
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .section-title {
                margin-bottom: 30px;
            }
            
            .recent-post {
                flex-direction: column;
            }
            
            .recent-post-img {
                width: 100%;
                height: 120px;
                margin-right: 0;
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                padding: 100px 0 60px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .btn-primary, .btn-outline-light {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }