
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #234d20;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background-color: #75a743;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.about, .gallery, .contact {
    padding: 20px;
    background-color: white;
    margin: 10px auto;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery-images {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gallery-images img {
    max-width: 48%;
    border-radius: 8px;
}

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