@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            background-color: #fdf7fa;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, #fbb3c1 0%, #d22871 60%, #752d6f 100%);
        }

        .hero-gradient-inverse {
            background: linear-gradient(135deg, #752d6f 0%, #d22871 60%, #fbb3c1 100%);
        }
        
        .service-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .testimonial-card {
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: scale(1.03);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #752d6f;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .btn-hover-effect {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-hover-effect:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #b81f5e;
            z-index: -1;
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }
        
        .btn-hover-effect:hover:after {
            transform: scaleY(1);
        }
        
        .language-selector {
            transition: all 0.3s ease;
        }
        
        .language-selector:hover {
            transform: translateY(-2px);
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-reverse {
            animation: float-reverse 5s ease-in-out infinite;
        }
        
        .pulse-slow {
            animation: pulse 5s infinite;
        }
        
        .gradient-text {
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            background-image: linear-gradient(90deg, #d22871, #752d6f);
        }
        
        /* Style pour le reCAPTCHA */
        .g-recaptcha {
            display: inline-block;
            margin: 15px 0;
        }
        
        /* Style pour les messages de statut */
        .form-status {
            padding: 10px;
            margin: 10px 0;
            border-radius: 4px;
            display: none;
        }
        
        .form-status.success {
            background-color: rgba(233, 75, 124, 0.1);
            color: #d22871;
            display: block;
            border-left: 4px solid #d22871;
        }
        
        .form-status.error {
            background-color: rgba(210, 40, 113, 0.1);
            color: #b81f5e;
            display: block;
            border-left: 4px solid #b81f5e;
        }