/* Footer Styles */
.footer-logo {
    height: 30px;
    max-width: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(1) opacity(0.8);
    transform: scale(1.05);
}

.footer-links a:hover {
    text-decoration: underline !important;
    opacity: 0.8;
}

.footer {
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer .col-md-4 {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .footer .col-md-4:last-child {
        margin-bottom: 0;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer .d-flex {
        justify-content: center;
    }
}
