/* Footer fixes to ensure consistent styling across all pages */

/* Override any conflicting styles */
.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 2rem !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
}

.footer-column {
    min-width: unset !important;
    margin-bottom: 1.5rem !important;
}

.footer-logo {
    margin-bottom: 1.5rem !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 1.5rem !important;
    margin-top: 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.footer-bottom p {
    margin-bottom: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .footer-bottom p:first-child {
        margin-bottom: 0.5rem !important;
    }
}
