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

        body {
            font-family: 'Poppins', sans-serif;
            background: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        /* Hero Section */
        .tarif-hero {
            margin-top: 80px;
            background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
            padding: 5rem 5%;
            text-align: center;
            color: white;
        }

        .tarif-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .tarif-hero p {
            font-size: 1.3rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Main Container */
        .tarif-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 5%;
        }

        /* Section Title */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .underline {
            width: 100px;
            height: 4px;
            background: #3498db;
            margin: 0 auto;
        }

        /* Pricing Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-bottom: 5rem;
        }

        /* Pricing Card */
        .pricing-card {
            background: white;
            border-radius: 30px;
            padding: 3rem 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(52, 152, 219, 0.3);
        }

        /* Icon Circle */
        .pricing-icon-wrapper {
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 140px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            border: 5px solid white;
        }

        .pricing-icon {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Card Content */
        .pricing-content {
            margin-top: 5rem;
        }

        .pricing-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-amount {
            font-size: 3rem;
            font-weight: 800;
            color: #3498db;
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            color: #666;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: #f8f9fa;
            border-radius: 10px;
        }

        /* CTA Button */
        .pricing-cta {
            display: inline-block;
            padding: 1rem 3rem;
            background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
        }

        .pricing-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
        }

        /* Additional Services */
        .additional-services {
            background: white;
            padding: 4rem 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 5rem;
        }

        .additional-services h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-item {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid #3498db;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
        }

        .service-item h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.8rem;
        }

        .service-item p {
            color: #666;
            line-height: 1.8;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 4rem 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .faq-section h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #f8f9fa;
            padding-bottom: 1.5rem;
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .faq-question::before {
            content: '❓';
            font-size: 1.5rem;
        }

        .faq-answer {
            color: #666;
            line-height: 1.8;
            padding-left: 2.5rem;
        }

        /* Contact Banner */
        .contact-banner {
            background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
            padding: 4rem 3rem;
            border-radius: 25px;
            text-align: center;
            color: white;
            margin-top: 5rem;
        }

        .contact-banner h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .contact-banner p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .contact-banner .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: white;
            color: #3498db;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .contact-banner .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 6rem;
            }

            .services-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .tarif-hero {
                padding: 3rem 5%;
            }

            .tarif-hero h1 {
                font-size: 2.5rem;
            }

            .tarif-hero p {
                font-size: 1.1rem;
            }

            .tarif-container {
                padding: 3rem 5%;
            }

            .section-title {
                font-size: 2rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 5rem;
            }

            .pricing-card {
                padding: 2.5rem 2rem;
            }

            .pricing-icon-wrapper {
                width: 120px;
                height: 120px;
                top: -55px;
            }

            .pricing-title {
                font-size: 1.5rem;
            }

            .pricing-amount {
                font-size: 2.5rem;
            }

            .additional-services, .faq-section {
                padding: 3rem 2rem;
            }

            .contact-banner {
                padding: 3rem 2rem;
            }

            .contact-banner h3 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .tarif-hero h1 {
                font-size: 2rem;
            }

            .tarif-hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .pricing-card {
                padding: 2rem 1.5rem;
            }

            .pricing-icon-wrapper {
                width: 100px;
                height: 100px;
                top: -50px;
            }

            .pricing-title {
                font-size: 1.3rem;
            }

            .pricing-amount {
                font-size: 2rem;
            }

            .pricing-features li {
                font-size: 1rem;
            }

            .pricing-cta {
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }

            .additional-services, .faq-section {
                padding: 2rem 1.5rem;
            }

            .contact-banner h3 {
                font-size: 1.8rem;
            }

            .contact-banner p {
                font-size: 1rem;
            }
        }