body {
    background-color: #f9f9f9;
}
.blog-item {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.blog-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.blog-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.blog-item p {
    color: #555;
}
.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
.read-more:hover {
    text-decoration: underline;
}