body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #99ffe6;
    color: #006600;
    text-align: center;
    padding: 20px;
    position: relative;
}

.logo {
    width: 300px; /* Set the width of your logo */
    height: auto; /* Maintain aspect ratio */
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

h1 {
    margin-left: 120px; /* Adjust margin to provide space for the logo */
}

nav {
    background-color: #444;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 15px 15px;
}

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

section {
    padding: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin: 10px 0;
    }

    .logo {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    h1 {
        margin-left: 0;
        text-align: center;
    }
}
