    /* Blog Page Styles */
    .blog-page {
        padding: 4rem 0;
        background-color: #f9f9f9;
    }

    .page-title {
        font-size: 3rem;
        color: #b1160b;
        text-align: center;
        margin-bottom: 3rem;
        font-weight: 700;
    }
    
    .blog-list {
        padding: 2rem 0;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }

    .blog-post {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-post:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .blog-post-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .blog-image {
        height: 200px;
        background-size: cover;
        background-position: center;
    }

    .blog-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .blog-title {
        font-size: 1.4rem;
        color: #333;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .blog-summary {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 1rem;
        flex-grow: 1;
    }

    .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.8rem;
        color: #888;
    }

    .blog-date {
        font-style: italic;
    }

    .read-more {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: #b1160b;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        font-weight: 500;
    }

    .read-more:hover {
        background-color: #8b1209;
    }

    /* Pagination Styles */
    .pagination {
        display: flex;
        justify-content: center;
        margin-top: 3rem;
    }

    .pagination a {
        padding: 0.5rem 1rem;
        margin: 0 0.25rem;
        border: 1px solid #ddd;
        color: #333;
        text-decoration: none;
        border-radius: 4px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .pagination a:hover, .pagination a.active {
        background-color: #b1160b;
        color: #fff;
        border-color: #b1160b;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .blog-grid {
            grid-template-columns: 1fr;
        }

        .page-title {
            font-size: 2.5rem;
        }
    /* Add this to your existing blog-styles.css */

    .blog-page {
        padding: 4rem 0;
        background-color: #f9f9f9;
    }

    .page-title {
        font-size: 3rem;
        color: #b1160b;
        text-align: center;
        margin-bottom: 3rem;
        font-weight: 700;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }

    .blog-post {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-post:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .blog-post-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .blog-image {
        width: 100%;
        height: 200px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .blog-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .blog-title {
        font-size: 1.4rem;
        color: #333;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .blog-summary {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 1rem;
        flex-grow: 1;
    }

    .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.8rem;
        color: #888;
    }

    .blog-date {
        font-style: italic;
    }

    .read-more {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: #b1160b;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        font-weight: 500;
    }

    .read-more:hover {
        background-color: #8b1209;
    }

    /* Single Blog Post Styles */
    .blog-single .blog-post {
        max-width: 800px;
        margin: 0 auto;
        background: #fff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .blog-single .blog-image {
        height: auto;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .blog-single .blog-images {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .blog-single .blog-images .blog-image {
        flex: 1;
        height: 300px;
        object-fit: cover;
    }

    .back-to-blogs {
        display: inline-block;
        margin-top: 2rem;
        padding: 0.5rem 1rem;
        background-color: #b1160b;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .back-to-blogs:hover {
        background-color: #8b1209;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .blog-grid {
            grid-template-columns: 1fr;
        }

        .blog-single .blog-images {
            flex-direction: column;
        }
        
        .blog-single .blog-images .blog-image {
            height: 200px;
        }
    }}