* {
    box-sizing: border-box;
}

.main-footer {
    width: 100%;
    background: #081f35;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
}

.footer-inner {
    width: min(1280px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 24px 0;
    }

    .footer-copy {
        font-size: 13px;
        line-height: 1.5;
    }
}