.main-footer {
    width: 100%;
    margin-top: auto;
    background-color: #151515;
    border-top: 1px solid #2b2b2b;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1400px, 100%);
    min-height: 58px;
    margin: 0 auto;
    padding: 12px 24px;
}

.footer-container p {
    margin: 0;
    color: #969696;
    font-size: 13px;
}

.footer-signature {
    text-align: right;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 14px 16px;
        text-align: center;
    }

    .footer-signature {
        text-align: center;
    }
}