div.lawyer_footer_content{
    margin-top: 50px;
    position: relative;
    display: flex;
    height: 500px;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/bg-footer.png);
}
div.lawyer_footer_content h2{
    position: relative;
    font-size: 32px;
    font-weight: 300;
    color: #333;
}
div.lawyer_footer_content h2 b{
    font-size: 32px;
    font-weight: 700;
    color: #333;
}
div.lawyer_footer_content h2:before,
div.lawyer_footer_content h2:after {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;height: 30px;
    background-color: #888;
}
div.lawyer_footer_content h2:before{
    top: -40px;
}
div.lawyer_footer_content h2:after{
    bottom: -40px;
}
h2.hidden{
    display: none!important;
}

/* 모바일 반응형 디자인 */
@media screen and (max-width: 768px) {
    div.lawyer_footer_content {
        height: 300px;
        margin-top: 30px;
        padding: 20px;
    }
    
    div.lawyer_footer_content h2 {
        font-size: 24px;
        text-align: center;
        line-height: 1.4;
    }
    
    div.lawyer_footer_content h2 b {
        font-size: 24px;
    }
    
    div.lawyer_footer_content h2:before,
    div.lawyer_footer_content h2:after {
        height: 20px;
    }
    
    div.lawyer_footer_content h2:before {
        top: -30px;
    }
    
    div.lawyer_footer_content h2:after {
        bottom: -30px;
    }
}

/* 작은 모바일 디바이스 */
@media screen and (max-width: 480px) {
    div.lawyer_footer_content {
        height: 250px;
        margin-top: 20px;
        padding: 15px;
    }
    
    div.lawyer_footer_content h2 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    div.lawyer_footer_content h2 b {
        font-size: 20px;
    }
    
    div.lawyer_footer_content h2:before,
    div.lawyer_footer_content h2:after {
        height: 15px;
    }
    
    div.lawyer_footer_content h2:before {
        top: -25px;
    }
    
    div.lawyer_footer_content h2:after {
        bottom: -25px;
    }
}