/* Generated from legacy/testimonials.html by scripts/build-legacy-styles.mjs. */
/* Critical Hero Section CSS for LCP optimization */
        .testimonials-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-desktop.webp');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            margin-top: 88px;
            text-align: center;
        }

        /* Fallback for browsers that don't support WebP */
        .no-webp .testimonials-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-desktop.jpg');
        }

        /* Responsive hero backgrounds */
        @media (max-width: 1366px) {
            .testimonials-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-tablet.webp');
            }
            .no-webp .testimonials-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-tablet.jpg');
            }
        }

        @media (max-width: 768px) {
            .testimonials-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-mobile.webp');
                padding: 100px 0 60px;
            }
            .no-webp .testimonials-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-mobile.jpg');
            }
        }

/* Page-specific styles */

        /* Hero Section */
        .testimonials-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .rating-summary {
            margin-top: 20px;
        }

        .rating-summary .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 10px;
        }

        .rating-summary .star {
            color: #fbbf24;
            font-size: 32px;
            font-weight: bold;
        }

        .rating-summary p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Testimonials Section */
        .all-testimonials {
            padding: 80px 0;
            background: var(--gray-light);
        }

        /* CTA Section */
        .testimonials-cta {
            padding: 80px 0;
            background: var(--brand-red);
            color: white;
            text-align: center;
        }

        .testimonials-cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .testimonials-cta p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition-normal);
        }

        .cta-button.primary {
            background: white;
            color: var(--brand-red);
        }

        .cta-button.primary:hover {
            background: var(--gray-light);
            transform: translateY(-2px);
            text-decoration: none;
        }

        .cta-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: var(--brand-red);
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .testimonials-hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .rating-summary .star {
                font-size: 28px;
            }

            .all-testimonials,
            .testimonials-cta {
                padding: 60px 0;
            }

            .testimonials-cta h2 {
                font-size: 28px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }
