 /* Base Styles */
        :root {
            --primary-color: #124DBB;
            --secondary-color: #EF2D56;
            --accent-color: #EF2D56;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --text-light: #7f8c8d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f9f9f9;
        }
        
        h1, h2, h3, h4 {
            color: var(--text-color);
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-color);
        }
        
        img {
            max-width: 100%;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            color: white;
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }
        
        .btn-outline:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        section {
            padding: 80px 0;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
        }
        

        .logo {
            display: flex;
            
            align-items: center;

        }
        
        .logo p {
            
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-top: 13px;
            
        }
        
      


        
       
        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--dark-color);
            font-weight: 600;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('media/bg-hero\ \(2\).jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 180px 0 100px;
        }
        
        .hero h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* Services Section */
        .services {
            background-color: white;
        }
        .text-center1.fade-in {
            text-align: center;
            font-size: 35px;
        }

        hr.solid {
            border: 1px solid #EF2D56;
            width: 30%;
           margin: auto;

        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .service-card i {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 17px;
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 15px;
        }
        
        /* Details Section */
        .details {
            background-color: var(--light-color);
        }
        
        .details-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .details-text {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
        }
        
        .details-list {
            margin: 30px 0;
        }
        
        .details-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .details-list li::before {
            content: '✓';
            color: var(--accent-color);
            font-weight: bold;
            margin-right: 10px;
        }


        /* tarif section */


         .formation-tarifs-zone {
            background: var(--light-color);
            color: var(--text-color);
            padding: 80px 0;
            font-family: 'Arial', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .formation-tarifs-zone::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(18, 77, 187, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(239, 45, 86, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .formation-conteneur {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .formation-titre-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .formation-titre-principal {
            font-size: 3rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .formation-sous-titre {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 300;
        }

        .offres-conteneur {
            display: flex;
            gap: 40px;
            align-items: stretch;
            margin-bottom: 50px;
        }

        .offre-bloc {
            flex: 1;
            background: #ffffff;
            border: 2px solid rgba(18, 77, 187, 0.1);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .offre-bloc:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 25px 50px rgba(18, 77, 187, 0.15);
        }

        .offre-premium {
            border-color: var(--secondary-color);
            position: relative;
        }

        .offre-premium::after {
            content: 'RECOMMANDÉ';
            position: absolute;
            top: 25px;
            right: -45px;
            background: var(--secondary-color);
            color: #ffffff;
            padding: 8px 45px;
            font-size: 0.75rem;
            font-weight: 700;
            transform: rotate(45deg);
            letter-spacing: 1px;
            box-shadow: 0 2px 10px rgba(239, 45, 86, 0.4);
        }

        .offre-entete {
            background: linear-gradient(135deg, rgba(18, 77, 187, 0.05), rgba(239, 45, 86, 0.05));
            padding: 40px 30px 30px;
            text-align: center;
            position: relative;
        }

        .offre-icone-container {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(18, 77, 187, 0.2);
        }

        .offre-icone-container i {
            font-size: 2rem;
            color: #ffffff;
        }

        .offre-nom {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .offre-prix-zone {
            margin-bottom: 10px;
        }

        .offre-prix {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }

        .offre-devise {
            font-size: 1.8rem;
            vertical-align: top;
            margin-left: 5px;
        }

        .offre-duree {
            color: var(--text-light);
            font-size: 1rem;
            margin-top: 5px;
        }

        .offre-corps {
            padding: 30px;
        }

        .offre-caracteristiques {
            list-style: none;
        }

        .offre-caracteristique {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(127, 140, 141, 0.2);
            color: var(--text-color);
        }

        .offre-caracteristique:last-child {
            border-bottom: none;
        }

        .offre-caracteristique i {
            color: var(--secondary-color);
            margin-right: 15px;
            font-size: 1.1rem;
            width: 20px;
        }

        .cpf-alerte {
            background: #ffffff;
            border: 2px solid var(--primary-color);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(18, 77, 187, 0.1);
        }

        .cpf-alerte::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
            border-radius: 15px;
            z-index: -1;
            animation: borderGlow 3s ease-in-out infinite alternate;
        }

        @keyframes borderGlow {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .cpf-icone-principale {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: block;
        }

        .cpf-titre-principal {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cpf-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-color);
        }

        /* Design Responsive */
        @media (max-width: 768px) {
            .formation-tarifs-zone {
                padding: 60px 0;
            }

            .formation-titre-principal {
                font-size: 2.2rem;
            }

            .offres-conteneur {
                flex-direction: column;
                gap: 30px;
            }

            .offre-premium::after {
                top: 20px;
                right: -30px;
                padding: 6px 35px;
                font-size: 0.7rem;
            }

            .offre-entete {
                padding: 30px 20px 25px;
            }

            .offre-icone-container {
                width: 70px;
                height: 70px;
            }

            .offre-icone-container i {
                font-size: 1.8rem;
            }

            .offre-prix {
                font-size: 2.8rem;
            }

            .offre-devise {
                font-size: 1.4rem;
            }

            .offre-corps {
                padding: 25px 20px;
            }

            .cpf-alerte {
                padding: 25px 20px;
            }
        }

        @media (max-width: 480px) {
            .formation-conteneur {
                padding: 0 15px;
            }

            .formation-titre-principal {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }

            .offre-entete {
                padding: 25px 15px 20px;
            }

            .offre-nom {
                font-size: 1.3rem;
            }

            .offre-prix {
                font-size: 2.5rem;
            }

            .offre-corps {
                padding: 20px 15px;
            }

            .cpf-titre-principal {
                font-size: 1.2rem;
            }

            .cpf-description {
                font-size: 0.9rem;
            }
        }

       
        /* Program Section */
        .program {
            background-color: white;
        }
        
        .modules {
            margin-top: 40px;
        }

        .hr.solid2  {
            border : 1px solid #EF2D56;
        }
        
        .module {
            background-color: var(--light-color);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .module:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .module h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .module p {
            font-style: italic;
            color: var(--text-light);
        }
        
        /* Registration Section */
        .registration {
            background-color: var(--light-color);
        }
        
        .steps {
            margin-top: 40px;
        }
        
        .step {
            display: flex;
            margin-bottom: 30px;
            align-items: flex-start;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .step.completed .step-number {
            background-color: var(--primary-color);
        }
        
        .step-content {
            flex: 1;
        }
        
        /* Contact Section */
        .contact {
            background-color: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-info {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 8px;
        }
        
        .contact-info h3 {
            margin-bottom: 20px;
        }
        
        .contact-info p {
            margin-bottom: 30px;
        }
        
        .contact-info-item {
            display: flex;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .contact-form {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 8px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-about p {
            margin-bottom: 20px;
        }
        
        .footer-links h3 {
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light-color);
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-color);
            font-size: 0.9rem;
        }
        
        /* Mobile Menu */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .details-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .details-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 15px 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 15px 0;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 120px 0 60px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
        }
    