body {
    background-color: #e8f5e9;
    color: #2e7d32;
    font-family: Arial, sans-serif;
}

header {
    background-color: #388e3c;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 50px;
    margin-right: 20px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.nav-menu a:hover {
    text-decoration: underline;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

button {
    background-color: #388e3c;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #2e7d32;
}

footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 10px;
}
