header {
    margin: 0;
}

#current-link {
    color: #3187C8;
}

.navbar {
    font-family: Cairo;
    display: flex;
    align-items: flex-end; /* Align items at the bottom */
    justify-content: center;
    padding: 10px;
    background-color: white;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 35px;
    color: rgb(49, 135, 200);
}

.nav-group {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 90%;
    width: 1200px;
}

.logo {
    display: flex;
    align-items: flex-end;
    margin-right: 30px;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 50px;
    align-items: baseline;
}

.nav-links a {
    text-decoration: none;
    color: #0D4688;
    white-space: nowrap;
    padding: 7px 10px;
    font-family: Cairo, sans-serif;
}

.nav-links a:hover {
    color: #3187C8;
}

@media (max-width: 900px) {
    .nav-group {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }

}