.wcp-section {
    padding: 20px 0px;
    background: #f8f9fb;
}

.wcp-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.wcp-left {
    width: 40%;
}

.wcp-title {
    font-size: 32px;
    font-weight: 600;
}

.wcp-sub {
    color: #6d6d6d;
    margin: 10px 0;
}

.wcp-line {
    width: 60px;
    height: 3px;
    background: #1f3c88;
    margin: 20px 0;
}

.wcp-left p {
    color: #666;
    line-height: 1.6; margin-top:40px;
}

.wcp-right {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.wcp-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.wcp-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 18px;
    color: #1f3c88;
    transition: 0.3s;
}

.wcp-item:hover .wcp-icon {
    transform: scale(1.1);
    background: #1f3c88;
    color: #fff !important;
}

.wcp-item h5 {
    margin: 0;
    font-size: 18px;
}

.wcp-item p {
    margin: 5px 0 0;
    color: #777;
}
.wcp-icon i{     width: 45px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    text-align: center; }
/* Responsive */
@media(max-width:768px){
    .wcp-container {flex-direction:column;}
    .wcp-left, .wcp-right {width:100%;}
}