body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 2.5em;
    color: #333;
}

.blog-header p {
    font-size: 1.2em;
    color: #666;
}

.blog-post {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: scale(1.02);
}

.blog-post h2 {
    font-size: 1.8em;
    color: #007BFF;
}

.blog-post p {
    color: #555;
}

.blog-post .post-meta {
    font-size: 0.9em;
    color: #999;
}

.blog-pagination {
    text-align: center;
    margin: 40px 0;
}

.blog-pagination a {
    margin: 0 10px;
    padding: 10px 15px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.blog-pagination a:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2em;
    }

    .blog-post h2 {
        font-size: 1.5em;
    }
}