/* ==================== */
        /* Reset et styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9fafb;
            color: #333;
            line-height: 1.6;
        }

        
        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0.8rem 1rem;
        }
        
        .nav-link {
            color: #333 !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #0d6efd !important;
        }
        
        .nav-link i {
            margin-right: 0.3rem;
        }
        
         /* Conteneur principal */
         .pricing-container {
            width: 100%;
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
        
        /* Carte de tarification */
        .pricing-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            border-radius: 4px;
            border: 1px solid rgba(156, 163, 175, 0.19);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Style pour la carte d'essai */
        .trial-card {
            background-color: white;
        }
        
        .trial-badge {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 10px;
            background-color: #dbeafe;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        
        .trial-badge p {
            color: #3b82f6;
            text-align: center;
        }
        
        .trial-badge span {
            display: inline-block;
        }
        
        .trial-price {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .trial-price .price {
            font-size: 3rem;
            font-weight: 700;
            color: rgba(2, 8, 24, 0.94);
        }
        
        .trial-price .period {
            color: rgba(1, 16, 35, 0.71);
        }
        
        /* Style pour la carte d'abonnement */
        .subscription-card {
            background-color: #1e293b;
            color: white;
        }
        
        .subscription-badge {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            background-color: #3b82f6;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        
        .subscription-badge p {
            color: white;
            text-align: center;
        }
        
        .subscription-price {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .subscription-price .price {
            font-size: 3rem;
            font-weight: 700;
            color: white;
        }
        
        .subscription-price .period {
            color: #e5e7eb;
        }
        
        /* Bouton commun */
        .pricing-button {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 14px;
            border-radius: 4px;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0px 1px 2px 0 rgba(107, 114, 129, 0.12), 0px 0px 0px 1px rgba(31, 42, 58, 0.08);
            transition: background-color 0.2s ease;
        }
        
        .trial-button {
            background-color: white;
        }
        
        .trial-button:hover {
            background-color: #f9fafb;
        }
        
        .trial-button p {
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(55, 65, 81, 0.79);
        }
        
        .subscription-button {
            background-color: white;
        }
        
        .subscription-button:hover {
            background-color: #f9fafb;
        }
        
        .subscription-button p {
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(55, 65, 81, 0.79);
        }



        /* ==================== */
        /* Footer */
        footer {
            background-color: #f8f9fa;
            color: #333;
            padding: 2rem 0;
            font-family: Arial, sans-serif;
            margin-top: 100px;
            height: 400px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .footer-frame {
            margin-bottom: 1.5rem;
        }

        .logoiq {
            max-width: 100px;
            height: auto;
            display: block;
            margin: 0 auto 1rem;
        }

        #languageSelect {
            width: 75%;
            margin: 0 auto;
            padding: 0.5rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #fff;
            font-size: 1rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #333;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: #007bff;
            text-decoration: underline;
        }

        .footer-frame p {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .footer-frame a {
            color: #333;
            text-decoration: none;
        }

        .footer-frame a:hover {
            color: #007bff;
            text-decoration: underline;
        }

        .connexion {
            margin-right: 0.5rem;
        }

        /* Styles responsives */
        @media (max-width: 768px) {
            .footer-frame {
                text-align: center;
            }

            #languageSelect {
                width: 100%;
            }

            .footer-links {
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                padding: 0 10px;
            }

            .footer-links li {
                margin-bottom: 0.5rem;
            }

            .footer-frame p {
                font-size: 0.8rem;
            }
        }