 .se-testimonial-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .se-testimonial-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #fff;
            padding: 1px 1px;
        }

        .se-testimonial-section {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .se-carousel-container {
            overflow: hidden;
            margin-bottom: 40px;
        }

        .se-carousel-track {
            display: flex;
            gap: 25px;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Stat Card */
        .se-stat-card {
            min-width: 280px;
            max-width: 280px;
            background: #15243a;
            color: white;
            padding: 40px 30px;
            border-radius: 24px;
            flex-shrink: 0;
        }

        .se-stat-card h2 {
            font-size: 26px;
            line-height: 1.3;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .se-stat-card p {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
        }

        /* Video Testimonial Cards */
        .se-video-card {
            min-width: 320px;
            max-width: 320px;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .se-video-thumbnail-wrapper {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .se-video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .se-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .se-video-overlay:hover {
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
        }

        .se-play-button {
            width: 70px;
            height: 70px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s, background 0.3s;
            padding-left: 4px;
        }

        .se-play-button:hover {
            transform: scale(1.05);
            background: rgba(0, 0, 0, 0.85);
        }

        .se-play-icon {
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 13px solid transparent;
            border-bottom: 13px solid transparent;
            margin-left: 3px;
        }

        .se-video-card-content {
            padding: 30px 30px 35px;
        }

        .se-author-role {
            color: #ff5e14;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .se-author-name {
            color: #2c3e50;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .se-testimonial-text {
            color: #7f8c9a;
            line-height: 1.7;
            font-size: 14px;
            margin-bottom: 18px;
        }

        .se-read-more {
            color: #ff5e14;
            font-weight: 700;
            text-decoration: none;
            font-size: 16px;
            display: inline-block;
            transition: opacity 0.3s;
        }

        .se-read-more:hover {
            opacity: 0.7;
        }

        /* Navigation */
        .se-carousel-nav {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
            padding-right: 20px;
        }

        .se-nav-button {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            border: none;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .se-nav-button:hover {
            background: #15243a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .se-nav-button:hover svg {
            stroke: white;
        }

        .se-nav-button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .se-nav-button:disabled:hover {
            background: white;
            transform: none;
        }

        .se-nav-button svg {
            width: 20px;
            height: 20px;
            stroke: #15243a;
            transition: stroke 0.3s;
        }

        /* Video Modal */
        .se-video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.92);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .se-video-modal.se-active {
            display: flex;
        }

        .se-video-modal-content {
            width: 100%;
            max-width: 1000px;
            position: relative;
        }

        .se-close-modal {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 40px;
            cursor: pointer;
            padding: 5px 15px;
            transition: opacity 0.3s;
            line-height: 1;
        }

        .se-close-modal:hover {
            opacity: 0.7;
        }

        .se-video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: black;
            border-radius: 12px;
        }

        .se-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        @media (max-width: 768px) {
            .se-stat-card,
            .se-video-card {
                min-width: 90vw;
                max-width: 90vw;
            }
        }