/**
 * DME-T Footer Styles
 * Handles the styling for the main footer and footer links
 */

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: var(--dme-accent);
    opacity: 1;
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}