/* Нижня частина футера */
.footer_bottom {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 17.5px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_logo {
    min-width: 150px;
    flex-grow: 1;
    text-align: left;
}

.footer_logo img {
    height: 35px;
    width: auto;
}

.footer_copyright {
    flex-grow: 1;
    min-width: 250px;
    text-align: center;
}

.footer_copyright p {
    font-size: 0.9rem;
    color: #fff;
    white-space: nowrap;
}

.footer_social {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    min-width: 150px;
    justify-content: flex-end;
}

.footer_social a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer_social a:hover {
    color: #f67828;
}

@media (max-width: 991px) {
    .footer_bottom {
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px 0;
        gap: 15px;
    }

    .footer_logo {
        text-align: center;
    }

    .footer_logo img {
        height: 42px;
    }

    .footer_copyright {
        order: 2;
    }

    .footer_copyright p {
        white-space: normal;
        max-width: 100%;
    }

    .footer_social {
        order: 3;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .footer_bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
