    .blog-hero {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        border-radius: 10px;
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }
    .blog-category {
        background: #f8f9fa;
        border-radius: 0px;
        padding: 1rem 1.5rem;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: block;
        color: inherit;
    }
    .blog-category:hover, .blog-category.active {
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        color: inherit;
    }
    .blog-category.active {
        border-left: 4px solid #0f1f7a;
    }
    .search-box {
        position: relative;
        max-width: 500px;
        margin: 0 auto;
    }
    .search-box input {
        padding: 1rem 1rem 1rem 3rem;
        border-radius: 7px;
        border: 2px solid rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.1);
        color: white;
        width: 100%;
    }
    .search-box input::placeholder {
        color: rgba(255,255,255,0.7);
    }
    .search-box input:focus {
        outline: none;
        border-color: rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.15);
    }
    .search-box i {
        position: absolute;
        left: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255,255,255,0.7);
    }
    .blog-card {
        border: none;
        border-radius: 15px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
    }
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    .blog-card-img {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
    .blog-card-body {
        padding: 1.5rem;
    }
    .category-badge {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        color: white;
        padding: 0.35rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: inline-block;
        margin-bottom: 0.75rem;
    }
    .blog-card-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    .blog-card-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .blog-card-title a:hover {
        color: #0f1f7a;
    }
    .blog-card-excerpt {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .blog-card-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.85rem;
        color: #888;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }
    .blog-card-author {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .blog-card-author img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
    }
    .read-more-link {
        color: #0f1f7a;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: gap 0.2s ease;
    }
    .read-more-link:hover {
        gap: 0.75rem;
        color: #0056b3;
    }
    .featured-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .featured-post {
        display: flex;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    .featured-post:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .featured-post-img {
        width: 80px;
        height: 60px;
        border-radius: 8px;
        object-fit: cover;
        flex-shrink: 0;
    }
    .featured-post-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.25rem;
        line-height: 1.4;
    }
    .featured-post-title a {
        color: inherit;
        text-decoration: none;
    }
    .featured-post-title a:hover {
        color: #0f1f7a;
    }
    .featured-post-date {
        font-size: 0.8rem;
        color: #888;
    }
    .pagination-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }
    .pagination .page-link {
        color: #0f1f7a;
        border: none;
        padding: 0.75rem 1rem;
        margin: 0 0.25rem;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    .pagination .page-link:hover {
        background: #f0f0f0;
        color: #0f1f7a;
    }
    .pagination .page-item.active .page-link {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        color: white;
    }
    .pagination .page-item.disabled .page-link {
        color: #ccc;
    }
    .no-posts {
        text-align: center;
        padding: 4rem 2rem;
        background: #f8f9fa;
        border-radius: 15px;
    }
    .no-posts i {
        font-size: 4rem;
        color: #ccc;
        margin-bottom: 1rem;
    }
    .asa-sticky-top-offset {
        top: 20px;
    }
