body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.custom-footer {
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    margin-top: auto;
    background: #ffffff;
    box-shadow: 224px 0px 90px rgba(0, 0, 0, 0.01),
                126px 0px 76px rgba(0, 0, 0, 0.05),
                56px 0px 56px rgba(0, 0, 0, 0.09),
                14px 0px 31px rgba(0, 0, 0, 0.1);
    padding: 30px 0 20px;
    /*border-radius: 8px;*/
}

.footer-logo {
    width: 100%;
    object-fit: contain;
    max-width: 280px;
}

@media (max-width: 800px) {
    .custom-footer {
        width: 100%;
    }
}

.footer-content {
    /*max-width: 2200px;*/
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
}

/* Левый столбец */
.left-column {
    padding-left: 40px;
    flex: 0 1 50%;
    max-width: 300px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.social-link img {
    height: 32px;
    width: auto;
    transition: opacity 0.3s;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 0px;
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.01em;

    color: #2D2E32;
}

.contact-link {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 20px;
}

/* Правый столбец */
.right-column {
    padding-top: 20px;
    padding-right: 20px;
    flex: 0 1 40%;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.01em;
    color: #2D2E32;
}

.menu-item {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    transition: color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item a {
    width: 100%;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    transition: color 0.3s;
    height: 20px;
    min-width: 200px;
}

.menu-item p {
    justify-content: center;
    margin-top: 2px;
    margin-bottom: 2px;
}

/* Ховер-эффекты */
.contact-link:hover,
.menu-item:hover {
    color: #666;
}

.social-link:hover img {
    opacity: 0.8;
}

nav {
    box-shadow: unset;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: row;
        gap: 30px;
    }
    
    .left-column,
    .right-column {
        padding: 0 20px;
        width: auto;
    }

    .right-column {
        padding-top: 30px;
    }
    
    .social-icons {
        justify-content: left;
    }
    
    .footer-menu {
        align-items: flex-start;
    }

    .menu-item {
        align-items: unset;
    }

    .menu-item p {
        justify-content: left;
    }

    .menu-item {
        font-size: 16px;
    }

    .menu-item a {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .footer-columns {
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .footer-logo {
        width: 86%;
        box-sizing: border-box;
        max-width: 240px;
    }
}