.footer {
    background: #333;
    color: white;
    padding: 10px;
    text-align: center;
    margin-top: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: underline;
}

.footer-links a:hover {
    text-decoration: underline;
}

body {
    padding-bottom: 80px;
}

/* Responsive footer styles */
@media (max-width: 768px) {
    .footer {
        padding: 8px 5px;
        font-size: 14px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 6px 3px;
        font-size: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 5px;
    }
    
    body {
        padding-bottom: 60px;
    }
}