.site-footer {
    width: 100%;
    background: #2C3333;
    border-top: 1px solid #CBE4DE;
    padding: 5px 0;
    margin-top: 20px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    color: #CBE4DE;
}

.site-footer a {
    color: #CBE4DE;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 1rem;
    flex-shrink: 0;
}

.site-footer a:hover {
    color: #0E8388;
    text-decoration: underline;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 16px;
}

.footer-menu,
.footer-contacts,
.footer-logo {
    flex: 1 1 0;
    max-width: 33.33%;
    min-width: 160px;
    box-sizing: border-box;
}

.footer-menu {
    text-align: left;
}

.footer-menu a {
    font-size: 12px;
}

.footer-link-logout {
    background: none;
    border: none;
    color: #CBE4DE;
    cursor: pointer;
    font: inherit;
    margin: 0 8px;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    padding: 0;
    display: inline;
}

.footer-link-logout:hover {
    color: #0E8388;
    text-decoration: underline;
}

.footer-contacts {
    text-align: center;
    font-size: 12px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.footer-contacts a {
    font-size: 12px;
}

.footer-logo {
    text-align: right;
    font-size: 12px;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 6px;
}

.footer-copyright {
    color: #CBE4DE;
    font-size: 12px;
}

/* ---------- Мобільна адаптація ---------- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-menu,
    .footer-contacts {
        flex: 1;
        min-width: 140px;
        text-align: center;
    }

    .footer-menu a,
    .footer-link-logout {
        display: inline-block;
        margin: 4px 8px;
    }

    .footer-logo {
        text-align: center;
        margin-top: 8px;
    }

    .footer-logo-img {
        height: 30px;
        margin: 0 auto;
    }
}
