.main-footer {
    background-color: white;
    padding: 40px 0 20px;
    border-top: 1px solid #eee;
}

.footer-left, 
.footer-center, 
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-left {
    gap: 15px;
}

.footer-center {
    gap: 10px;
}

.footer-right {
    align-items: flex-end;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-work-hours p {
    font-family: Inter;
    font-size: 16px;
    color: #282828;
    margin: 0;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    text-decoration: none;
    color: #282828;
    font-family: Inter;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #34495e;
}

.footer-phone p, 
.footer-phone-link {
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    color: #282828;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phone-link:hover {
    color: #34495e;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #0D96F7;
    transition: transform 0.3s;
    text-decoration: none;
}

.social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 15px;
    }
    
    .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-left, 
    .footer-center, 
    .footer-right {
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
        gap: 15px;
    }
    
    .footer-work-hours {
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-phone {
        text-align: center;
    }
}