footer {
    background-color: #0f2439;
    color: #fff;
    padding: 40px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 30px;
}

.footer-section {
    margin-bottom: 0;
    flex-shrink: 0;
}

.footer-section:first-child {
    flex-shrink: 0;
    margin-right: 0;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #d4af37;
    white-space: nowrap;
}

.footer-section h4 a {
    color: #d4af37;
    text-decoration: none;
}

.footer-section h4 a:hover {
    color: #d4af37;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    font-size: 12px;
    color: #e2e8f0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-contact p {
    font-size: 13px;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #1e3a5f;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-bottom-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-left .footer-logo {
    margin-bottom: 0;
}

.footer-left .footer-contact p {
    margin-bottom: 5px;
}

.footer-center {
    text-align: center;
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.footer-center p {
    font-size: 13px;
    color: #718096;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-center a {
    color: #718096;
    margin-left: 0;
}

.footer-center img {
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }
    
    .footer-section {
        padding: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom-center {
        flex-direction: column;
    }
    
    .footer-left {
        flex-direction: column;
    }
}
