    body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            color: var(--dark-text);
        }
        
        /* PAGE HEADER WITH BACKGROUND IMAGE */
        .page-header {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            padding: 4rem 0;
            color: white;
            text-align: center;
            margin-bottom: 1rem;
        }
        .page-header::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(45deg, rgba(10, 35, 66, 0.85), rgba(13, 110, 253, 0.7));
            z-index: 1;
        }
        .page-header .container {
            position: relative;
            z-index: 2;
        }
        
        /* BREADCRUMB NAVIGATION */
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.1);
            display: inline-block;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
        }
        .breadcrumb-item a {
            color: #e9ecef;
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb-item a:hover {
            color: #fff;
        }
        .breadcrumb-item.active {
            color: #ced4da;
        }
        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }

        .page-header h1 {
            font-weight: 700;
        }
        .page-header .lead {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* ENHANCED ARTICLE CARD DESIGN */
        .article-card {
            background-color: white;
            border: none;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            margin-bottom: 2.5rem;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--card-hover-shadow);
        }
        
        .card-img-container {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        .article-card .card-img-top {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .article-card:hover .card-img-top {
            transform: scale(1.05);
        }
        .article-card .category-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background-color: var(--secondary-color);
            color: white;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.2s;
        }
        .article-card .category-badge:hover {
             background-color: var(--primary-color);
        }

        .article-card .card-body {
            padding: 1.75rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .article-card .card-meta {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .card-meta span {
            display: flex;
            align-items: center;
        }
        .card-meta .icon {
            color: var(--secondary-color);
            margin-right: 0.5rem;
        }
        .article-card .card-title {
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--dark-text);
            margin-bottom: 0.75rem;
            flex-grow: 1;
        }
        .article-card .card-title a {
            color: inherit;
            text-decoration: none;
            background-image: linear-gradient(var(--secondary-color), var(--secondary-color));
            background-position: 0% 100%;
            background-repeat: no-repeat;
            background-size: 0% 2px;
            transition: background-size .3s;
        }
        .article-card .card-title a:hover {
            background-size: 100% 2px;
        }
        .article-card .card-text {
            color: #5a626b;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .article-card .card-footer {
            background-color: transparent;
            border-top: 1px solid #f0f0f0;
            padding: 1.25rem 1.75rem;
            margin-top: auto;
        }
        .read-more-link {
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
        }
        .read-more-link .fa-arrow-right {
            transition: transform 0.2s;
            display: inline-block;
        }
        .read-more-link:hover .fa-arrow-right {
            transform: translateX(5px);
        }

        /* NO ARTICLES FOUND MESSAGE */
        .no-articles-found {
            background-color: #fff;
            border-radius: 20px;
            padding: 4rem;
            text-align: center;
            box-shadow: var(--card-shadow);
        }
        .no-articles-found .icon {
            font-size: 4rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        .no-articles-found h3 {
            font-weight: 600;
        }
        .no-articles-found p {
            color: #6c757d;
        }

        /* BACK TO NEWS BUTTON */
        .btn-back-to-news {
            font-weight: 500;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }