body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f4fef4;
    color: #222;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #72c64d;
    color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: bold;
}

.logo img {
    height: 40px;
    width: auto;
}

.menu a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.hero {
    padding: 70px 20px;
    text-align: center;
    background: #a5e887;
}

.posts {
    display: grid;
    gap: 20px;
    padding: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.post-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e2f7e2;
}

.post-card h2 {
    margin-top: 0;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #3c8f2e;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.footer {
    margin-top: 40px;
    padding: 20px;
    background: #72c64d;
    color: white;
    text-align: center;
}
