        /* Base Styles */
        :root {
            --primary-color-rv: #d10000;
            --secondary-color-rv: #2980b9;
            --text-color-rv: #000;
            --light-gray-rv: #f5f5f5;
            --white-rv: #fff8f0;
        }
        
        /* Review Section */
        #review-videos {
            padding: 5rem 2rem;
            background-color: #fff8f0; 
            text-align: center;
            overflow: hidden;
        }
        
        .section-title-rv {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color-rv);
        }
        
        .section-subtitle-rv {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Carousel Container */
        .carousel-container-rv {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .carousel-rv {
            display: flex;
            transition: transform 0.5s ease-in-out;
            padding: 1rem 0;
        }
        
        /* Review Cards */
        .review-card-rv {
            flex: 0 0 calc(100% / var(--cards-per-view, 1));
            padding: 0 1rem;
            box-sizing: border-box;
        }


        @media (min-width: 768px) {
            .review-card-rv {
                --cards-per-view: 2;
            }
        }

        @media (min-width: 1024px) {
            .review-card-rv {
                --cards-per-view: 3;
            }
        }
/*        @media (min-width: 768px) {
            .review-card-rv {
                flex: 0 0 50%;
            }
        }
        
        @media (min-width: 1024px) {
            .review-card-rv {
                flex: 0 0 33.333%;
            }
        }
        */
        /* View All Link Card */
        .view-all-card-rv {
            flex: 0 0 100%;
            padding: 0 1rem;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        @media (min-width: 768px) {
            .view-all-card-rv {
                flex: 0 0 50%;
            }
        }
        
        @media (min-width: 1024px) {
            .view-all-card-rv {
                flex: 0 0 33.333%;
            }
        }
        
        .view-all-link-rv {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            background: var(--white-rv);
            border-radius: 10px;
            padding: 2rem;
            text-decoration: none;
            color: var(--primary-color-rv);
            font-size: 1.5rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .view-all-link-rv:hover {
            background: var(--primary-color-rv);
            color: white;
            transform: scale(1.05);
        }
        
        .card-inner-rv {
            background: var(--white-rv);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        /* Video Container */
        .video-container-rv {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: #000;
        }
        
        .video-container-rv iframe,
        .video-container-rv .video-thumbnail-rv {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .video-thumbnail-rv {
            cursor: pointer;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .play-button-rv {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .play-button-rv:hover {
            transform: scale(1.1);
            background-color: var(--primary-color-rv);
        }
        
        .play-button-rv::after {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 25px solid var(--text-color-rv);
            margin-left: 5px;
        }
        
        .play-button-rv:hover::after {
            border-left-color: var(--white-rv);
        }
        
        /* Student Info */
        .student-info-rv {
            padding: 1rem;
            text-align: center; /* Changed from left to center */
            flex-grow: 1;
            background-color: var(--light-gray-rv);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }


        .student-name-rv {
            display: flex;
            color: var(--primary-color-rv);
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.3rem;
        }
        .student-course-rv {
            font-size: 0.95rem;
            line-height: 0.7;
            font-family: 'Lato', sans-serif; 
            font-weight: bold;
            color: #555;
            font-style: normal; /* Changed from italic */
            font-weight: 500;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .student-name-rv {
                flex-direction: column;
                gap: 0.2rem;
            }
            
            .student-course-rv {
                font-size: 0.9rem;
            }
        }

        /* Navigation Arrows */
        .carousel-nav-rv {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }
        
        .nav-arrow-rv {
            pointer-events: all;
            background-color: rgba(255, 255, 255, 0.8);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .nav-arrow-rv:hover {
            background-color: var(--primary-color-rv);
            color: white;
        }
        
        .nav-arrow-rv.disabled-rv {
            opacity: 0.3;
            pointer-events: none;
            cursor: default;
        }
        
        /* Indicators */
        .carousel-indicators-rv {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
            gap: 6px;
            max-width: 100%;
            padding: 8px 0; /* Added padding to prevent cropping */
            align-items: center; /* Ensure vertical alignment */
        }

        .indicator-rv {
            width: 12px;
            height: 12px;
            border-radius: 2px; /* Changed from 50% to make square */
            background-color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            display: flex; /* Ensures proper sizing */
            align-items: center; /* Center content vertically */
            justify-content: center; /* Center content horizontally */
        }

        .indicator-rv.active-rv {
            background-color: var(--primary-color-rv);
            transform: scale(1.1); /* Slightly reduced from 1.2 for squares */
            border-radius: 2px; /* Maintain square shape when active */
        }