.footer {
    background-color: #222; /* Dark background */
    color: #fff;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6200ea; /* Accent color on hover */
}

.footer-social a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #6200ea;
}

/* Responsive: Center links on smaller screens */
@media (max-width: 480px) {
    .footer-links a {
        margin: 0 8px;
        font-size: 13px;
    }
    
    .footer-social a {
        margin: 0 8px;
        font-size: 16px;
    }
}