/* Footer Styles */
.xinghe-footer {
    background-color: #0E386F !important;
    color: white !important;
    padding: 3rem 0 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.6 !important;
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.footer-top {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    margin-bottom: 2rem !important;
    gap: 2rem !important;
}

.footer-column {
    flex: 1 1 200px !important;
    margin-bottom: 2rem !important;
    padding: 0 15px !important;
}

.footer-logo-col {
    flex: 1.5 1 250px !important;
}

.footer-logo {
    max-width: 180px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
    border-radius: 4px !important;
}

.company-info h3 {
    color: white !important;
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
}

.company-info p {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.95rem !important;
}

.footer-column h3 {
    color: white !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.2rem !important;
    position: relative !important;
    padding-bottom: 10px !important;
}

.footer-column h3:after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background: rgba(255,255,255,0.3) !important;
}

.footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-column ul li {
    margin-bottom: 1rem !important;
}

.contact-info li {
    margin-bottom: 1.5rem !important;
}

.footer-column ul li i {
    margin-right: 10px !important;
    width: 20px !important;
    text-align: center !important;
    color: rgba(255,255,255,0.8) !important;
}

.footer-column a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.footer-column a:hover {
    color: white !important;
    padding-left: 5px !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding: 1.5rem 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 0.9rem !important;
}

.footer-bottom p {
    margin: 0 !important;
    color: rgba(255,255,255,0.6) !important;
}

.footer-links {
    display: flex !important;
    gap: 1.5rem !important;
}

.footer-links a {
    color: rgba(255,255,255,0.6) !important;
    transition: color 0.3s ease !important;
}

.footer-links a:hover {
    color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-column {
        flex: 1 1 100% !important;
    }
    
    .footer-logo-col {
        text-align: center !important;
    }
    
    .footer-logo {
        margin: 0 auto 1rem !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .footer-links {
        justify-content: center !important;
    }
}