/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #00625e;
    color: white;
}


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

nav ul li {
    margin: 0;
}

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

nav ul li a:hover {
    background-color: rgba(56, 142, 113, 0.594);
    padding: 5px;
    border-radius: 8px;
}
header li{
list-style-type: none;
}
header li a{
    text-decoration: none;
    display: inline;
    color: white;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
    color: white;
    /* Initially hidden on larger screens */
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
        /* Show the menu icon on mobile */
    }

    /*#nav-menu {*/
    /*    display: none;*/
        /* Hide the menu by default on mobile */
    /*    flex-direction: column;*/
        /* Stack items vertically */
    /*    width: 100%;*/
        /* Full width on mobile */
    /*    text-align: center;*/
        /* Center text in menu */
    /*    position: absolute;*/
        /* Position the menu below the nav */
    /*    top: 60px;*/
        /* Adjust based on nav height */
    /*    left: 0;*/
        /* Align to the left */
    /*    background-color: #00625e;*/
        /* Background color of the dropdown */
    /*    z-index: 1;*/
        /* Ensure it appears above other elements */
    /*}*/

    /*#nav-links.show {*/
    /*    display: flex;*/
        /* Show the menu when toggled */
    /*}*/

    /*#nav-links li {*/
    /*    margin: 10px 0;*/
        /* Space between items in the mobile view */
    /*}*/
     nav {
        display: none; /* Hide menu by default */
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #00625e;
        text-align: center;
        z-index: 1;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    nav ul li {
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        display: block;
    }

    /* Show menu when active */
    nav.active {
        display: flex;
    }
}



/* Footer Styles */
footer {
    background-color: #00625e;
    color: white;
    text-align: center;
    padding: 10px 20px;
}

footer img {
    margin: 5px;
}