#service_box {
    background-image: url('../images/service_back.jpg');
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    padding: 80px 15px;
    height: 310px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

#service_box .inner {
    width: 1200px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#service_box .serviceList {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#service_box ul {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

#service_box li {
    display: flex;
    align-items: center;
    width: 50%;
    height: 150px;
    background-color: #fff;
    overflow: hidden
}

#service_box a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#service_box a:hover {
    opacity: 0.8;
}

#service_box img {
    height: 100px;
    width: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    #service_box .inner,
    #service_box .serviceList,
    #service_box ul {
        width: 90%;
    }
}

@media (max-width: 768px) {
    #service_box {
        padding: 60px 15px;
        height: auto;
        min-height: 250px;
    }
    
    #service_box .inner,
    #service_box .serviceList,
    #service_box ul {
        width: 100%;
        height: auto;
    }
    
    #service_box ul {
        flex-direction: column;
        gap: 15px;
    }
    
    #service_box img {
        height: 80px;
    }
}

@media (max-width: 480px) {
    #service_box {
        padding: 40px 15px;
        min-height: 200px;
    }
    
    #service_box img {
        height: 60px;
    }
}