.footer {
    background: #0f2835;
    color: #cddfe8;
    padding: 48px 0 32px;
    flex-shrink: 0;
    margin-top: auto;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #264f60;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

/* ==================== АДАПТИВНОСТЬ ==================== */

@media (max-width: 768px) {
    .copyright {
        flex-direction: column;
        gap: 16px;
    }
    .copyright div {
        width: 100%;
    }
}