/* Footer Styling Fix */
.footer {
    background: linear-gradient(180deg, #1a202c 0%, #0f1419 100%) !important;
    padding: 80px 0 30px !important;
    border-top: 1px solid rgba(94, 158, 214, 0.2) !important;
    margin-top: 0 !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 50px !important;
    margin-bottom: 60px !important;
}

.footer-section h4 {
    color: #ffffff !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
    padding-bottom: 0.5rem !important;
}

.footer-section:first-child h4::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 50px !important;
    height: 2px !important;
    background: #5e9ed6 !important;
}

.footer-section p {
    color: #cbd5e0 !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    font-size: 0.95rem !important;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 1rem !important;
}

.footer-links a {
    color: #8b98a5 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    position: relative !important;
}

.footer-links a::after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 1px !important;
    bottom: -2px !important;
    left: 0 !important;
    background-color: #5e9ed6 !important;
    transition: width 0.3s ease !important;
}

.footer-links a:hover {
    color: white !important;
    transform: translateX(3px) !important;
}

.footer-links a:hover::after {
    width: 100% !important;
}

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

.footer-bottom p {
    color: #a0aec0 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .footer-section:first-child h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}