.slider-container {
    width: 100%;
    margin: 0 auto;
}

.swiper {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
    display: flex;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding-top: 45px;
    padding-bottom: 0;
    box-shadow: 0px 0px 15px 0px rgba(105, 219, 242, 0.35);
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 0px solid rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
    margin-left: 20px;
}

.feature-card-2 {
    background: #ffffff;
    border-radius: 24px;
    padding-top: 45px;
    padding-bottom: 0;
    box-shadow: 0px 0px 15px 0px rgba(77, 111, 255, 0.35);
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 0px solid rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
    margin-left: 20px;
}

.feature-card-3 {
    background: #ffffff;
    border-radius: 24px;
    padding-top: 45px;
    padding-bottom: 0;
    box-shadow: 0px 0px 15px 0px rgba(129, 77, 255, 0.35);
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 0px solid rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
    margin-left: 20px;
}

.feature-card-4 {
    background: #ffffff;
    border-radius: 24px;
    padding-top: 45px;
    padding-bottom: 0;
    box-shadow: 0px 0px 15px 0px rgba(188, 92, 178, 0.35);
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 0px solid rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
    margin-left: 20px;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(70, 130, 255, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-card-2::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(70, 130, 255, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-card-3::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(70, 130, 255, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-card-4::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(70, 130, 255, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #000000;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding: 0 45px;
    z-index: 1;
}

.features-list {
    list-style: none;
    margin-bottom: 0px;
    padding: 0 45px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;swi
    position: relative;
}

.features-list::after {
    content: '';
    position: absolute;
    bottom: 116px;
    left: 40%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    pointer-events: none;
    z-index: 0;
}


.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.checkmark {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkmark svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    font-weight: 400;
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .feature-card {
        padding-top: 30px;
        padding-bottom: 0;
    }

    .features-list {
        margin-bottom: 10px;
        padding: 0 15px;
    }

    
    .card-title {
        font-size: 22px;
        padding: 0 15px;
        margin-bottom: 16px;
    }

    .feature-text {
        font-size: 14px;
    }

    .card-image {
        height: auto;
    }

    .checkmark {
        width: 32px;
        height: 32px;
    }

    .features-list::after {
        width: 750px;
        height: 450px;
        bottom: 116px;
        z-index: 0;
    }
    
    .feature-item {
    gap: 6px;
    padding: 6px 0;
    }
}