
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: linear-gradient(to right, #F971F0,#ffffff,#71F0F9);
    min-height: 100vh;
}

html {
    overflow-x: hidden;
}
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .hero-title {
            text-align: center;
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .hero-title .red { color: #dc2626; }
        .hero-title .black { color: #000000; }

        .desktop-line { display: inline; }
        .mobile-line { display: none; }

        .video-wrapper {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            background: #000;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .description {
            text-align: center;
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            line-height: 1.6;
            color: #000;
            margin-bottom: 40px;
            font-weight: 500;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .desktop-break { display: inline; }
        .mobile-break { display: none; }

        .cta-button {
            display: block;
            width: fit-content;
            margin: 40px auto;
            padding: 20px 40px;
            background: #f8e81c;
            color: #000;
            text-decoration: none;
            font-weight: 800;
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            text-transform: uppercase;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            text-align: center;
            line-height: 1.3;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
            background: #f8e81c;
        }

        /* Handwritten Testimonials - Images */
        .handwritten-section {
            margin: 60px 0;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .handwritten-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            background: rgba(255,255,255,0.8);
            padding: 20px;
            transform: rotate(-1deg);
            transition: transform 0.3s ease;
        }

        .handwritten-image:nth-child(even) {
            transform: rotate(1deg);
        }

        .handwritten-image:hover {
            transform: rotate(0deg) scale(1.02);
        }

        @media (max-width: 768px) {
            .handwritten-image {
                padding: 10px;
            }
        }

        .reviews-section { margin: 60px 0; }

        .review-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .reviewer-name { font-weight: 800; font-size: 1.2rem; color: #000; }
        .stars { color: #fbbf24; font-size: 1.2rem; letter-spacing: 2px; }
        .review-date { color: #666; font-weight: 500; }
        .review-text { color: #333; line-height: 1.7; font-size: 1.05rem; margin-bottom: 15px; }
        .google-link { color: #dc2626; text-decoration: none; font-weight: 600; font-size: 0.95rem; }
        .google-link:hover { text-decoration: underline; }
        .avis-google-label { color: #666; font-size: 0.9rem; margin-bottom: 5px; }
        
        
         
         
        @media (max-width: 768px) {
            .container { padding: 20px 15px; }
            .review-card { padding: 20px; }
            .cta-button { padding: 18px 30px; width: 90%; max-width: 400px; }
            
            .desktop-line { display: none; }
            .mobile-line { display: inline; }
            
            .desktop-break { display: none; }
            .mobile-break { display: inline; }
        }
.container {
    padding-bottom: 0;
}
