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

nav ul {
    list-style: none;
    background-color: #333;
    text-align: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 15px 20px;
    display: inline-block;
}

.hero {
    background: url('path-to-your-hero-image.jpg') no-repeat center center/cover;
    height: 400px;
    color: #fff;
    text-align: center;
    padding-top: 150px;
}

#about, #blog {
    padding: 20px;
    margin: 0 10%;
}

.blog-posts {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.post {
    margin: 20px;
    box-shadow: 0 0 10px #ccc;
    padding: 10px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
}

@media (max-width: 600px) {
    .hero {
        height: 200px;
        padding-top: 50px;
    }
    .blog-posts {
        flex-direction: column;
    }
    .post {
        width: 90%;
        margin: 20px auto;
    }
}
