.sk-footer {
    background-color: #163c75;
    padding: 60px 0;
    font-family: 'Nunito Sans', sans-serif;
    color: #ffffff;
}

.sk-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.sk-footer__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 280px;
}

.sk-footer__col--info {
    max-width: 320px;
}

.sk-footer__col--menu {
    align-items: center;
}

.sk-footer__logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.sk-footer__desc {
    font-size: 18px;
    line-height: 1.1;
    word-break: break-word;
}

.sk-footer__heading {
    border: 1px solid #ffffff;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 22px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    white-space: nowrap;
}

/* Menus */
.sk-footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    width: 100%;
}

.sk-footer__nav li {
    width: 100%;
    text-align: center;
}

.sk-footer__nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    display: block;
    transition: opacity 0.3s ease;
}

.sk-footer__nav a:hover {
    opacity: 0.8;
}

/* Contacts */
.sk-footer__col--contacts {
    align-items: center;
}

.sk-footer__contacts-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    width: 100%;
}

.sk-footer__contact-item {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    display: block;
    line-height: 1.1;
}

a.sk-footer__contact-item {
    text-decoration: underline;
}

a.sk-footer__contact-item:hover {
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .sk-footer {
        padding: 44px 0;
    }

    .sk-footer__inner {
        flex-direction: column;
        gap: 20px;
    }

    .sk-footer__col {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        align-items: flex-start;
    }

    .sk-footer__col--menu,
    .sk-footer__col--contacts {
        align-items: flex-start;
    }

    .sk-footer__heading {
        font-size: 14px;
        max-width: 164px;
    }

    .sk-footer__desc {
        font-size: 14px;
    }

    .sk-footer__nav,
    .sk-footer__contacts-list {
        align-items: flex-start;
    }

    .sk-footer__nav li {
        text-align: left;
    }

    .sk-footer__nav a {
        font-size: 14px;
        text-align: left;
    }

    .sk-footer__contact-item {
        font-size: 14px;
        text-align: left;
    }
}