.footer-sig {
    width: 100%;
    background: var(--primary);
    padding: 10px;
    flex-shrink: 0;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-copy {
    color: var(--white);
    font-size: 12px;
    text-align: center;
}

@media (max-width: 768px) {

    .footer-sig {
        padding: 16px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }

    .footer-copy {
        text-align: center;
    }

}