/* Benefits Carousel Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    .benefits-grid {
        display: flex;
        overflow-x: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem;
        position: relative;
    }

    .benefit-item {
        min-width: 85%;
        scroll-snap-align: center;
        margin-right: 1rem;
        opacity: 0.7;
        transform: scale(0.95);
        transition: all 0.3s ease;
    }

    .benefit-item.active {
        opacity: 1;
        transform: scale(1);
    }

    /* Navigation Dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #CBD5E0;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .carousel-dot.active {
        background-color: var(--primary-color);
        transform: scale(1.2);
    }

    /* Remove progress bar styles */
}
