.footer {
    background-color: #044680;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}
.footer-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.footer-content {
    max-width: 96%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.footer-brand img {
    max-height: 5vh;
}

.footer-contacts {
    margin-top: 3%;
    margin-left: 3%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item span {
    color: white;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.75rem;
}

@medi {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-contacts,
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}