body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7f2;
    color: #333;
}

header {
    background: #2f6f2f;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('assets/img/garden.jpg') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: white;
    background-color: #3a7a3a;
}

.content {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

.news-box {
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #2f6f2f;
    border-radius: 4px;
}

footer {
    background: #2f6f2f;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}
