.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 100%;
    width: 100%;
    padding: 40px 120px;
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
}

.footer-content__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo {
    max-width: 406px;
    width: 100%;
    height: 134px;
}

.footer-logo img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
    max-width: 635px;
    width: 100%;
    margin-right: 57px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 24px;
    line-height: 150%;
    font-weight: 600;
    color: #024149;
}

.footer-column a {
    font-size: 20px;
    line-height: 150%;
    font-weight: 500;
    color: #126873;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column .nav-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-column-address {
    font-size: 18px;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
    padding: 20px 120px;
    background: #EEEEEE;
    border-radius: 24px;
}

.footer-bottom p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: #024149;
}

@media (max-width: 1440px) {
    .footer-content {
        padding: 40px 60px;
    }
    .footer-logo {
        max-width: max-content;
        width: 100%;
        height: 125px;
    }
    .footer-columns {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 80px;
        max-width: 532px;
        width: 100%;
        margin-right: 0;
    }
    .footer-column {
        gap: 8px;
    }
    .footer-column .nav-item {
        gap: 6px;
    }
    .footer-column h4 {
        font-size: 20px;
        font-weight: 700;
    }
    .footer-column a {
        font-size: 18px;
    }
    .footer-column-address {
        font-size: 16px;
    }
    .footer-bottom p {
        font-size: 14px;
    }
}

@media (max-width: 1280px) {
    .footer-content {
        padding: 40px;
    }
    .footer-content__inner {
        gap: 32px;
    }
    .footer-column .nav-item {
        gap: 5px;
    }
}

@media (max-width: 991px) {
    .footer {
        padding: 0 20px;
    }
    .footer-content {
        flex-direction: column;
        padding: 40px 32px;
    }
    .footer-content__inner {
        gap: 20px;
    }
    .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: flex-start;
        gap: 0;
        max-width: 100%;
        width: 100%;
    }
    .footer-column {
        gap: 10px;
    }
}

@media screen and (max-width: 700px) {
    .footer-columns {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        max-width: 100%;
        width: 100%;
    }
}