body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /*margin-right: 4%;
    margin-left: 4%;*/
    box-sizing: border-box;
    background-color: #adb4cf;


}
.container{
    background-color: #fff;
    min-height: 900px;
    padding-bottom: 5px;
}
header {
    background-color: #f7f7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
}
.logo{
    display: flex;
/*    width: 800px;*/
}
.logo img {
    max-width: 26%;
    height: auto;
}

p img,span img {
    height: auto;
/*    width: 300;*/
    height:350;
    max-width: 100%;   
}

.menu-toggle {
    display: none; /* Hide the menu toggle by default on larger screens */
    font-size: 1.5em;
    cursor: pointer;
    color: blue;
}

nav {
    display: flex;
    align-items: center;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

li {
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #1d3d7a;
    font-weight: bold;
}

main {
    padding: 1em;
}
.floating-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #8a89cd;
    color: white;
/*    padding: 1em;*/
    text-align: center;
}

.contact-info p {
    margin: 5px 0;
}

/* Media query for responsive design */
@media only screen and (max-width: 600px) {
    .menu-toggle {
        display: block; /* Show the menu toggle on smaller screens */
    }

    nav {
        display: none; /* Hide the navigation by default on smaller screens */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #efefef;
    }

    nav.active {
        display: flex; /* Show the navigation when the menu toggle is clicked */
        color: #e8eaef;
    }

    ul {
        flex-direction: column;
        align-items: center;
    }

    li {
        margin: 10px 0;
    }
}
