footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 0.5rem 2%;
    gap: 1rem;
    width: 100%;
    height: auto;
    background: #EFEFEF;
    flex: none;
    align-self: stretch;
    flex-grow: 1;
    box-sizing: border-box;
}

.socialLinks {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.links {
    width: clamp(24px, 5vw, 32px);
    height: auto;
}

.contacts, .workSchedule, .address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 200px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .socialLinks, .contacts, .workSchedule, .address {
        width: 100%;
        text-align: left;
    }
}