footer {
    background-color: #000;
    color: white;
    padding: 1rem 0;
    font-size: 14px;
}

.footer-container {
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 80px;
    height: 40px;
    margin-right: 10px;
}

.footer-company-info {
    display: flex;
    align-items: center;
}

.footer-company-info span {
    margin: 0 5px;
    line-height: 1.5;
}

.footer-company-info span:first-child {
    margin-left: 0;
}

.footer-company-info span:last-child {
    margin-right: 0;
}

.footer-divider {
    height: 1px;
    background-color: white;
    margin: 10px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.footer-copyright {
    text-align: left;
}

.footer-icp {
    display: flex;
    align-items: center;
}

.footer-icp a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

.footer-icp img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

@media (max-width: 1200px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left {
        margin-bottom: 10px;
    }
    
    .footer-company-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-copyright {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left {
        margin-bottom: 10px;
    }
    
    .footer-company-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-copyright {
        margin-bottom: 10px;
    }
}