 
        :root {
            --pastel-yellow: #fff9e6;
            --pastel-purple: #f3ebff;
            --accent-yellow: #ffd966;
            --accent-purple: #c4a3e8;
            --deep-purple: #7c5ba6;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--pastel-purple) 100%);
            min-height: 100vh;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--pastel-purple) 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--deep-purple) !important;
        }

        .nav-link {
            color: #555 !important;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--deep-purple) !important;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            padding: 4rem 0 3rem;
        }

        .page-header h1 {
            font-size: 3rem;
            color: var(--deep-purple);
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease;
        }

        .page-header p {
            font-size: 1.2rem;
            color: #666;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services Section */
        .services-section {
            padding: 2rem 0 5rem;
        }

        /* Service Card avec checkbox */
        .service-wrapper {
            height: 100%;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
            border: 3px solid transparent;
            cursor: pointer;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(124, 91, 166, 0.2);
        }

        /* Style pour les checkbox masquées */
        .service-checkbox {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .service-checkbox:checked + .service-card {
            border-color: var(--accent-purple);
            background: linear-gradient(135deg, #fffbf0 0%, #f8f3ff 100%);
            box-shadow: 0 10px 30px rgba(124, 91, 166, 0.3);
        }

        .check-indicator {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: #e8dff5;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .check-indicator i {
            font-size: 1.2rem;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-checkbox:checked + .service-card .check-indicator {
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-purple) 100%);
        }

        .service-checkbox:checked + .service-card .check-indicator i {
            opacity: 1;
        }

        .service-icon {
            font-size: 3rem;
            color: var(--deep-purple);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: var(--deep-purple);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .service-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--deep-purple);
        }

        /* Form Actions */
        .form-actions {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(124, 91, 166, 0.2);
            margin-top: 3rem;
        }

        .form-actions h3 {
            color: var(--deep-purple);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .btn-submit {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-purple) 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(124, 91, 166, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(124, 91, 166, 0.4);
        }

        .btn-reset {
            width: 100%;
            padding: 1rem 2rem;
            background: white;
            color: var(--deep-purple);
            border: 2px solid var(--deep-purple);
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-reset:hover {
            background: var(--deep-purple);
            color: white;
        }

        :root {
            --pastel-yellow: #fff9e6;
            --pastel-purple: #f3ebff;
            --accent-yellow: #ffd966;
            --accent-purple: #c4a3e8;
            --deep-purple: #7c5ba6;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--pastel-purple) 100%);
            min-height: 100vh;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--pastel-purple) 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--deep-purple) !important;
        }

        .nav-link {
            color: #555 !important;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--deep-purple) !important;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            padding: 4rem 0 3rem;
        }

        .page-header h1 {
            font-size: 3rem;
            color: var(--deep-purple);
            margin-bottom: 3rem;
        }

        /* Service Cards */
        .service-card {
            background: linear-gradient(135deg, #fffbf0 0%, #f8f3ff 100%);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
            border: none;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(124, 91, 166, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--deep-purple);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: var(--deep-purple);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .btn-service {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-purple) 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(124, 91, 166, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .btn-service:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(124, 91, 166, 0.4);
            color: white;
        }

        .games-section {
            padding-bottom: 5rem;
        }