.structure-wrapper{
    width:100%;
    overflow:hidden;
}

.company-structure{
    max-width:1400px;
    margin:auto;
    padding:80px 20px;
    display:grid;
    grid-template-columns:220px 1fr;
    grid-template-areas:
        "title title"
        "logo row1"
        "logo row2"
        "logo row3"
        "logo row4"
        "logo row5";
    gap:40px;
}

.structure-title{
    grid-area:title;
    text-align:center;
    margin-bottom:10px;
}

.structure-title span{
    display:block;
    color:#0F3FB4;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.structure-title h2{
    margin:0;
    font-size:35px;
    font-weight:700;
    color:#1d1d1d;
    line-height:1.2;
}

.company-logo{
    grid-area:logo;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.company-logo::after{
    content:"";
    position:absolute;
    top:40px;
    bottom:40px;
    right:-25px;
    width:4px;
    background:#0F3FB4;
}

.company-logo img{
    width:170px;
    display:block;
    background:#fff;
    /* border:5px solid #173EA5; */
    /* border-radius:20px; */
    padding:15px;
    box-sizing:border-box;
}

.structure-row{
    position:relative;
    display:grid;
    grid-template-columns:300px 1fr;
    gap:40px;
    align-items:center;
}

.structure-row:nth-of-type(2){
    grid-area:row1;
}

.structure-row:nth-of-type(3){
    grid-area:row2;
}

.structure-row:nth-of-type(4){
    grid-area:row3;
}

.structure-row:nth-of-type(5){
    grid-area:row4;
}

.structure-row:nth-of-type(6){
    grid-area:row5;
}

.structure-row::before{
    content:"";
    position:absolute;
    left:-25px;
    top:50%;
    width:25px;
    height:4px;
    background:#0F3FB4;
}

.service-card{
    position:relative;
    height:80px;
    background:linear-gradient(90deg,#2d6fff,#0b42bf);
    border-radius:45px;
    display:flex;
    align-items:center;
    padding-left:70px;
    color:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.service-card::after{
    content:"▶";
    position:absolute;
    right:-22px;
    top:50%;
    transform:translateY(-50%);
    color:#0F3FB4;
    font-size:18px;
}

.service-icon{
    position:absolute;
    left:-18px;
    width:74px;
    height:74px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border:4px solid #dfe7ff;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
}

.service-icon i{
    font-size:28px;
    color:#0F3FB4;
}

.service-name{
    font-size:24px;
    font-weight:700;
    line-height:1.1;
}

.service-detail{
    background:#fff;
    /* border-radius:14px; */
    padding:18px 24px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.service-detail strong{
    display:block;
    color:#0F3FB4;
    margin:8px 0;
}

.service-detail ul{
    margin:0;
    padding-left:20px;
}

.service-detail li{
    margin:6px 0;
    color:#444;
    line-height:1.5;
}

@media (max-width:992px){

    .structure-wrapper{
        overflow-x:auto;
        overflow-y:hidden;
        -webkit-overflow-scrolling:touch;
        padding-bottom:10px;
    }

    .structure-wrapper::-webkit-scrollbar{
        height:8px;
    }

    .structure-wrapper::-webkit-scrollbar-thumb{
        background:#0F3FB4;
        border-radius:20px;
    }

    .company-structure{
        width:1400px;
        min-width:1400px;
    }

}