﻿/* === Общий стиль футера === */
.custom-footer {
    background-color: #5FAD41;
    color: #F5F5F5;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Контейнер футера */
.footer-container {
    max-width: 1620px;
    margin: 0 auto;
    text-align: left;
}

/* Ссылки */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

    .footer-links ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

        .footer-links ul li a:hover {
            transform: scale(1.3);
        }

/* Контакты и соцсети */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
}

    .social-icons img {
        width: 24px;
        transition: transform 0.3s ease;
    }

        .social-icons img:hover {
            transform: scale(1.2);
        }

/* Нижняя строка футера */
.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #F5F5F5;
    margin-top: 20px;
}
