.ca-promo-model-1{
    position:relative;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
}

.ca-promo-model-1__image img{
    width:100%;
    display:block;
    border: 8px solid #ffffff;
}

.ca-promo-model-1__features{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin-top:30px;
}

.ca-promo-model-1__feature{
    flex:1;
    text-align:center;
    position:relative;
}

.ca-promo-model-1__feature:not(:last-child):after{
    content:'';
    position:absolute;
    right:-8px;
    top:10px;
    width:1px;
    height:70px;
    background:rgba(255,255,255,0.25);
}

.ca-promo-model-1__feature-icon{
    font-size:30px;
    margin-bottom:12px;
}

.ca-promo-model-1__feature p{
    margin:0;
    font-size:13px;
    line-height:1.5;
    font-weight:700;
    letter-spacing:.3px;
}

.ca-promo-model-1__offer{
    margin-top:28px;
    background:rgba(0,0,0,0.35);
    border-radius:999px;
    padding:18px 24px;
    text-align:center;
    font-size:14px;
    font-weight:700;
}

.ca-promo-model-1__list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.ca-promo-model-1__item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding-bottom:10px;
    border-bottom:1px solid #ececec;
}

.ca-promo-model-1__item:last-child{
    border-bottom:none;
}

.ca-promo-model-1__icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff3f8;
    color:#ff007f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.ca-promo-model-1__item p{
    margin:0;
    line-height:1.8;
    font-size:17px;
    color:#374151;
}

.ca-promo-model-1__terms{
    display:flex;
    gap:16px;
    align-items:flex-start;
    background:#fff4f8;
    border-radius:18px;
    padding:10px;
    margin-top:28px;
}

.ca-promo-model-1__terms-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    color:#ff007f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.ca-promo-model-1__terms-content p{
    margin:0 0 8px;
    color:#374151;
    line-height:1.7;
}

.ca-promo-model-1__terms-content a{
    color:#ff007f;
    text-decoration:none;
    font-weight:700;
}

.ca-promo-model-1__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:999px;
    text-decoration:none;
    margin-top:28px;
    font-weight:700;
    transition:.3s;
}

.ca-promo-model-1__button:hover{
    transform:translateY(-2px);
    opacity:.92;
}

@media(max-width:767px){

    .ca-promo-model-1__feature:not(:last-child):after{
        display:none;
    }

    .ca-promo-model-1__item{
        gap:14px;
    }

    .ca-promo-model-1__item p{
        font-size:15px;
    }

}

.ca-promo-model-1__inner--left-image{
    flex-direction:row;
}

.ca-promo-model-1__inner--right-image{
    flex-direction:row-reverse;
}

@media(max-width:991px){

    .ca-promo-model-1__inner--left-image,
    .ca-promo-model-1__inner--right-image{
        flex-direction:column;
    }

}