    /* Футер */
    .footer {
        background: var(--color-footer-background);
        padding: 1rem 15%;
        text-align: center;
        display: flex;
        justify-content: center;
        column-gap: 150px;
        /* border-top: 1px solid #e0e0e0; */
    }

    .footer-content {
        /* max-width: 1200px; */
        /* margin: 0 auto; */
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .footer-content p {
        color: #00000079;
        margin-bottom: 0.5rem;
    }

    .footer-contacts {
        display: flex;
        column-gap: 30px;
    }

    /* .footer-contacts .contact-element {} */

    .footer-contacts .contact-element img {
        max-height: 150px;
    }

    .footer-contacts .contact-element a {
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        color: #656565;

        :hover {
            color: #3966E0;
        }
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-links a {
        color: var(--color-button);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s ease;
        cursor: pointer;
    }

    .footer-links a:hover {
        color: var(--color-button-hover);
    }