        /* Blog Page Specific Styles */

        .blog-hero {
            background: url('../images/homepage/k.jpeg') no-repeat center center;
            background-size: cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .blog-hero h1 {
            font-size: 52px;
            font-weight: 700;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
            position: relative;
            z-index: 1;
            letter-spacing: 1px;
        }

        .blog-hero p {
            font-size: 20px;
            font-weight: 500;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.5;
        }
.blog-posts {
    padding: 60px 0;
}

.featured-post {
    margin-bottom: 40px;
}

.featured-post .card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.featured-post .card-text {
    font-size: 1.1rem;
}

.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    color: #666;
}

.btn-primary {
    background-color: #dc3545;
    border-color: #dc3545;
    transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #dc3545;
    border-color: #dc3545;
}

.pagination {
    margin-top: 40px;
}

.page-link {
    color: #dc3545;
}

.page-item.active .page-link {
    background-color: #dc3545;
    border-color: #dc3545;
}

@media (max-width: 768px) {
    .blog-header {
        padding: 40px 0;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-header p {
        font-size: 1rem;
    }

    .featured-post .card-title {
        font-size: 1.5rem;
    }

    .featured-post .card-text {
        font-size: 1rem;
    }
}

.pagination .page-link.text-muted {
    color: #6c757d !important;
    pointer-events: none;
}