.whyShake {
    z-index: 2;
    background-image: linear-gradient(to right bottom, oklch(95% .03 350), oklch(92% .02 285));
    position: relative;
    padding: 80px 0 70px;
}

.whyShake::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(images/trust-badge-bg.png) center no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: .1;
}

.whyShakecont {
    width: 1536px;
    margin: 0 auto;
    padding: 0 32px;
    max-width: 100%;
}

.whyShakeTit {
    margin-bottom: 50px;
    text-align: center;
}

.whyShakeTit h2 {
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
    color: #000;
    margin-bottom: 16px;
}

.whyShakeTit p {
    font-size: 18px;
    line-height: 28px;
    color: #666666;
}

.whyShake ul {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.whyShake li {
    border-radius: 20px;
    gap: 25px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: all .3s;
    box-sizing: border-box;
    flex: 1;
    padding: 32px;
    border: 4px solid #CCCCDB;
}

.whyShake li:hover {
    transform: translateY(-5px);
    border: 4px solid #802d7c;
    box-shadow: 0 20px 25px -5px #0000001a;
}

.whysIcon {
    border-radius: 14px;
    margin-bottom: 24px;
    color: #802d7c;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 128px;
    height: 128px;
    /* border: 3px solid #802d7c; */
    background: #ECE5F2;
    margin: auto;
    margin-top: 0px;
        margin-bottom: 0px;
}

.whysIcon svg {
    display: block;
    width: 32px;
    height: 32px;
}

.whyShake li h3 {
    font-size: 18px;
    font-weight: bold;
    color: oklch(0.25 0.02 330);
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
}

.whyShake li p {
    font-size: 16px;
    line-height: 26px;
    color: oklch(0.45 0.02 285);
}





@media screen and (max-width: 780px) {
    .whyShake {
        padding: 70px 0;
    }

    .whyShake ul {
        flex-direction: column;
    }

    .whyShakecont {
        padding: 0 16px;
    }

    .whyShakeTit h2 {
        font-size: 36px;
    }

   
}