/* Footer Alignment Fix - Center remaining sections */
.footer-content {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 4rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
}

.footer-section {
    flex: 0 1 auto !important;
    text-align: center !important;
    min-width: 200px !important;
}

.footer-section h3 {
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.footer-section p {
    text-align: center !important;
    max-width: 400px !important;
    margin: 0 auto !important;
}

.footer-section ul {
    text-align: center !important;
    padding: 0 !important;
}

.footer-section ul li {
    text-align: center !important;
}

.footer-bottom {
    text-align: center !important;
    padding: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }
    
    .footer-section {
        width: 100% !important;
        max-width: 400px !important;
    }
}