/* header */
#header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

#header .logo img {
    height: 50px;
}

#header #global-menu ul {
    display: flex;
    list-style: none;
}

#header #global-menu li {
    margin-left: 20px;
}

/* footer */
#footer {
    padding: 40px;
    background-color: #f1f1f1;
    text-align: center;
}

#footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

#footer .footer-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#footer .footer-menu li {
    margin-left: 20px;
}

#footer .copyright {
    margin-top: 20px;
}