.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 0;
}

.navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.navbar-phone {
    text-align: center;
    flex: 1;
}

.navbar-phone a {
    font-size: 1.2rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-brand {
        order: 1;
        flex-basis: auto;
    }

    .navbar-phone {
        order: 2;
        flex-basis: 100%;
        margin: 10px 0;
    }

    .navbar-toggler {
        order: 3;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .navbar-logo {
        height: 30px;
    }
}