@media screen and (max-width:768px) {
    .footer_header {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 30px;
        flex-direction: column;
    }

    .footer_header_left {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .footer_header_nav {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: flex-end;
        flex-direction: column;
    }

    .footer_header_tel {
        margin-bottom: 15px;
    }

    .footer_header_logo {
        margin-bottom: 15px;
    }

    .footer_links {
        display: flex;
        gap: 15px;
        padding: 30px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer .copyright,
    .footer .design {
        text-align: center;
    }
}