#footer {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #1a1a1a;
    border-top: 2px solid #333;
    padding: 30px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 24px;
    height: auto;
    fill: #ffb905;
}

.footer-brand {
    font-family: 'Miriam Libre', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-copy {
    font-family: monospace;
    font-size: 13px;
    color: #888;
}

.footer-info {
    margin-top: 12px;
    font-family: monospace;
    font-size: 11px;
    color: #666;
    line-height: 1.6;
}

.footer-info p {
    margin: 4px 0;
}

.footer-info a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #ffb905;
}

.footer-right {
    display: flex;
    gap: 24px;
}

.footer-right a {
    font-family: monospace;
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #ffb905;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 20px;
    }

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

    .footer-right {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
