.testimonial-section {
            padding-top: 100px;
            padding-bottom: 100px;
            background: white;
        }

        .container-slider {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title-block {
            margin-bottom: 50px;
        }

        .section-title-block.block-center {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title-block.max-width-428px {
            max-width: 428px;
        }

        .section-intro-text {
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 18px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #415da1;
        }

        .section-title {
            margin-top: 0px;
            margin-bottom: 0px;
            color: #121229;
            font-size: 38px;
            line-height: 1.342;
            font-weight: 700;
        }

        .testimonial-wrapper {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .testimonial-thumbnail-block {
            width: 100%;
            max-width: 500px;
        }

        .testimonial-image-inner {
            position: relative;
            width: 100%;
        }

        .testimonial-image-inner video {
            width: 100%;
            border-radius: 8px;
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .play-btn:before {
            content: '▶';
            color: #0051aa;
            font-size: 24px;
            margin-left: 4px;
        }

        .testimonial-icon {
            display: flex;
            align-items: center;
            gap: 8px;
            border: 2.2px solid #d8d8d8;
            border-radius: 8px;
            padding: 6px 12px;
            width: fit-content;
            margin-bottom: 30px;
        }

        .testimonial-icon img {
            width: 35px;
            height: 35px;
        }

        .review-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .stars {
            display: flex;
            align-items: center;
            gap: 2px;
            margin-bottom: 4px;
        }

        .stars svg {
            width: 16px;
            height: 16px;
        }

        .rating-number {
            font-weight: 600;
            color: #202124;
            font-size: 14px;
            margin-left: 4px;
        }

        .review-source {
            font-size: 14px;
            color: #5f6368;
        }

        .testimonial-content {
            width: 100%;
            max-width: 461px;
        }

        /* Slider Styles */
        .testimonial-slider-wrapper {
            position: relative;
            height: auto;
            padding-bottom: 80px;
            background-color: transparent;
        }

        .s-slider-mask {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .s-slider-mask > div {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-single-slider.s-slide {
            flex: 0 0 100%;
            min-width: 100%;
            padding: 0;
        }

        .testimonial-content-text {
            margin-bottom: 35px;
        }

        .testimonial-text {
            font-size: 20px;
            line-height: 34px;
            color: #39394a;
        }

        .client-name {
            margin-bottom: 10px;
            color: #121229;
            line-height: 20px;
            font-weight: 600;
        }

        .client-title {
            color: #646478;
            font-size: 16px;
            line-height: 20px;
            font-style: italic;
        }

        /* Navigation Arrows */
        .testi-arrow-left,
        .testi-arrow-right {
            position: absolute;
            bottom: 0;
            width: 35px;
            height: 40px;
            border: 1px solid #415da1;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .testi-arrow-left {
            left: 0;
        }

        .testi-arrow-right {
            left: 50px;
        }

        .testi-arrow-left:hover,
        .testi-arrow-right:hover {
            background-color: #006cdf;
            color: white;
            border-color: #006cdf;
            
        }

        .s-icon-slider-left:before,
        .s-icon-slider-right:before {
            font-size: 18px;
            font-weight: bold;
            filter: invert(1);
        }
        .s-icon-slider-left:hover,
        .s-icon-slider-right:hover {
            
            filter: invert(1);
        }

     
        /* Navigation Dots */
        .testimonial-nav {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .s-slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(65, 93, 161, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .s-slider-dot.w-active {
            background-color: #415da1;
            width: 20px;
            border-radius: 5px;
        }

        .s-slider-dot:hover {
            background-color: #415da1;
        }

        @media screen and (max-width: 991px) {
            .testimonial-wrapper {
                flex-direction: column;
                gap: 30px;
            }

            .testimonial-thumbnail-block {
                max-width: 100%;
            }

            .testimonial-content {
                max-width: 100%;
            }

            .section-title {
                font-size: 32px;
            }
        }

        @media screen and (max-width: 767px) {
            .testimonial-section {
                padding-top: 60px;
                padding-bottom: 60px;
            }

            .testimonial-text {
                font-size: 16px;
                line-height: 28px;
            }

            .section-title {
                font-size: 28px;
            }
        }