/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    color: #333;
}

.header .logo-contact {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
}

.header .logo {
    height: 28px;
    margin: 10px 0;
}

.header .contact {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.header .contact .phone-icon {
    height: 26px;
    margin-right: 10px;
}

/* Navbar styles */
.navbar {
    overflow: hidden;
    background-color: #00008b;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .menu-items {
    display: flex;
}

.navbar .menu-items a {
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.navbar .menu-items a:hover {
    background-color: #ddd;
    color: black;
}

.navbar .icon {
    display: none;
}

@media screen and (max-width: 800px) {
    .header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header .logo {
        height: 20px;
        margin: 5px 0;
    }

    .header .contact {
        font-size: 16px;
    }

    .header .contact .phone-icon {
        height: 16px;
        margin-right: 5px;
    }

    .navbar {
        background-color: transparent;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .navbar .icon {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: #333;
        margin-left: 10px;
    }

    .navbar .menu-items {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }

    .navbar.responsive .menu-items {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        background-color: #f8f8f8;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        padding: 10px;
    }

    .navbar.responsive .menu-items a {
        display: block;
        text-align: center;
        color: blue !important;
        font-size: 16px;
        padding: 10px 20px;
        background-color: #f8f8f8;
        border-bottom: 1px solid #ddd;
        width: 100%;
    }

    .navbar.responsive .menu-items a:hover {
        background-color: #ddd;
        color: black;
    }

    .navbar.responsive .menu-items a:last-child {
        border-bottom: none;
    }
}
