/* Section Tarifs */
        .pricing-container {
            background-color: #f9f7ff;
            padding: 60px 20px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(69, 31, 83, 0.1);
            font-family: "Segoe UI", Roboto, Arial, sans-serif;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .pricing-header .section-title {
            color: #451F53;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .pricing-header .section-intro {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .pricing-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }

        .tab-btn {
            background: white;
            border: 2px solid #e0d7f0;
            color: #451F53;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .tab-btn:hover, .tab-btn.active {
            background: #451F53;
            color: white;
            border-color: #451F53;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 0 auto 30px; /* centre horizontalement */
            width: 100%; /* occupe toute la largeur disponible */
            max-width: 900px; /* limite la largeur max */
            padding: 0 15px; /* petits espacements sur les côtés */
            box-sizing: border-box;
        }


        .pricing-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(69, 31, 83, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: none;
        }

        .pricing-card.active {
            display: block;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(69, 31, 83, 0.15);
        }

        .card-header {
            background: #451F53;
            color: white;
            padding: 25px 20px;
            text-align: center;
        }

        .card-header i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .card-header h3 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .card-price {
            padding: 25px 20px;
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            border-bottom: 1px solid #eee;
        }

        .card-price span {
            color: #451F53;
            font-size: 2rem;
            font-weight: 700;
            display: block;
            margin-bottom: 5px;
        }

        .card-features {
            padding: 25px 20px;
            list-style: none;
            margin: 0;
        }

        .card-features li {
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
        }

        .card-features li:last-child {
            border-bottom: none;
        }

        .card-features i {
            color: #f39200;
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .card-footer {
            padding: 20px;
            text-align: center;
        }

        .card-btn {
            display: inline-block;
            background: #451F53;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #451F53;
        }

        .card-btn:hover {
            background: white;
            color: #451F53;
        }

        .pricing-note {
            background: #e8f4ff;
            color: #38393a;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .pricing-note i {
            font-size: 1.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .pricing-cards {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .tab-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }

        

        /*faq*/
        