.main-footer {
    background: var(--color-bg-dark);
    padding: var(--spacing-md) 0;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer-flex {
    color: var(--color-text-gray);
    font-size: 0.9rem;
    border: none !important;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-brand-yellow);
}


