
    .quote-slider-container {
        max-width: 50%;
        margin: auto;
        position: relative;
    }

    .quote-slider {
        width: 100%;
        overflow: hidden;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        touch-action: pan-y;
    }

    .slider-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
    }

    .quote {
        flex: 0 0 50%;
        box-sizing: border-box;
        padding: 30px;
        text-align: center;

        border-right: 1px solid #eee;
    }

    .quote:last-child {
        border-right: none;
    }

    @media (max-width: 767px) {
        .quote {
            flex: 0 0 100%;
            border-right: none;
        }
    }

    .arrow-custom {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #333;
        color: #fff;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        z-index: 10;
        font-size: 18px;
        border-radius: 5px;
        opacity: 0.7;
        transition: opacity 0.2s ease;
    }

    .arrow-custom:hover {
        opacity: 1;
    }

    .arrow-custom.prev {
        left: -50px;
    }

    .arrow-custom.next {
        right: -50px;
    }

    @media (max-width: 767px) {
        .arrow-custom.prev {
            left: -30px;
        }

        .arrow-custom.next {
            right: -30px;
        }


    }

    @media (max-width: 900px) {
        .quote-slider-container {
            max-width: 85%;

        }
    }
