.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 30px 10px 30px;
    width: 1400px;
    background: #323131;
}

.footer .content {
    width: 100%;
    display: flex;
    gap: 50px;
}

.footer .content .column {
    display: flex;
    flex-direction: column;
    max-width: 340px;
    gap: 35px;
}

.footer .content .column .links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.footer .content .column h5 {
    font-weight: 700;
    font-size: 24px;
    color: #f8f4ee;
}

.footer .content .column span {
    font-weight: 400;
    font-size: 16px;
    color: #f8f4ee;
}

.footer .content .column a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 5px 15px;
    font-weight: 500;
    font-size: 20px;
    color: #323131 !important;
    background: #ecdcc5;
}

.footer .copyright {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer .copyright span {
    font-weight: 500;
    font-size: 20px;
    color: #f8f4ee;
}

/* Адаптив под мобильные устройства */
@media (max-width: 1399px) {
    .footer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 60px;
        padding: 30px 10px;
        width: 390px;
        background: #323131;
        padding-bottom: 70px;
    }

    .footer .content {
        max-width: 378px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        gap: 50px;
    }

    .footer .content .column {
        max-width: unset;
        gap: 15px;
    }

    .footer .copyright span {
        text-align: center;
    }

    .footer .content .column span {
        line-height: 16px;
    }
}