.new {
            max-width: 100%;
            margin: 0 auto;
            /*padding-bottom: 115px;*/
        }

        .testimonials-header {
            text-align: center;
            color: white;
            margin-bottom: 50px;
        }

        .testimonials-header h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .testimonials-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            padding: 20px;
        }

        .carousel-wrapper {
            display: flex;
            gap: 20px;
            animation: scroll 30s linear infinite;
        }

        .carousel-wrapper:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        .testimonial-card {
            flex: 0 0 calc(40% - 15px);
            min-width: 350px;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stars {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            color: #333;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 80px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .author-info h4 {
            color: #333;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #999;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .testimonial-card {
                flex: 0 0 calc(33.333% - 14px);
                min-width: 250px;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-100%);
                }
            }
        }

        @media (max-width: 768px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 10px);
                min-width: 220px;
                padding: 20px;
            }

            .testimonials-header h2 {
                font-size: 1.8rem;
            }

            .testimonials-header p {
                font-size: 1rem;
            }

            .carousel-wrapper {
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .testimonial-card {
                flex: 0 0 calc(100% - 10px);
                min-width: 100%;
                padding: 20px;
            }

            .testimonials-header h2 {
                font-size: 1.5rem;
            }

            .testimonials-header {
                margin-bottom: 30px;
            }

            .carousel-container {
                padding: 15px;
            }

            .carousel-wrapper {
                gap: 15px;
            }

            .testimonial-text {
                min-height: auto;
            }
        }