 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: #EAC435;
            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-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50px;
        }
        
        .logo img {
        
            height: 100%;
        }
        

        .logotext{
            font-weight: 700;
            font-size: 20px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #2e7d32;
        }
        
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background:  linear-gradient(
          rgba(0, 0, 0, 0.5), 
          rgba(0, 0, 0, 0.5)
        ), url('media/BG-hero.jpg') no-repeat center center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #2e7d32;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            margin: 10px;
            transition: background-color 0.3s;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid #EAC435;
        }
        
        .btn:hover {
            background-color: #1b5e20;
        }
        
        .btn-outline:hover {
            background-color: rgba(255,255,255,0.2);
        }

        .gen-container {
            width: 70%;
            margin: auto;
            margin-top: -40px;
         
        }
        i {
            color: #EAC435;
        }

        @media (max-width:768px){
            .hero-content {
                margin-top: 30px;
                padding-bottom: 80px;
            }
            
        }
        
        /* Section Common Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2e7d32;
            font-size: 2rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: #2e7d32;
            margin: 15px auto;
        }
        
        /* Presentation Section */
        .presentation-content {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .presentation-text {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .advantages-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        
        .advantages-table th, 
        .advantages-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .advantages-table th {
            background-color: #f1f8e9;
            color: #2e7d32;
            font-weight: 600;
        }
        
        .cta-button {
            text-align: center;
            margin-top: 30px;
        }

        .cta-button a {
            color:#fff;
            text-decoration: none;
        }
        
        /* Description Section */
        .description-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .module-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .module-card:hover {
            transform: translateY(-10px);
        }
        
        .module-card h3 {
            color: #2e7d32;
            margin-bottom: 15px;
        }
        
        .methods-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .methods-table th, 
        .methods-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .methods-table th {
            background-color: #2e7d32;
            color: #fff;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .presentation-content {
                width: 100%;
            }
            
        }
        
        /* Testimonials Section */
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .testimonial-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #2e7d32;
        }
        
        .testimonial-name {
            font-weight: 600;
            color: #2e7d32;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #555;
        }

        .tm-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-details {
            margin: 20px 0;
        }
        
        .contact-details li {
            list-style: none;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-details li::before {
            content: "•";
            color: #2e7d32;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        
        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: Arial, sans-serif;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        /* Footer */
        footer {
            background-color: #EAC435;
            color: #1b5e20;
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .fa  {
            color:#EAC435;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
                padding: 15px;
                border-bottom: 1px solid #eee;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }


        /* pricing table */ 
         .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

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

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 20px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #059669, #10b981);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }

        .conference-banner {
            background: linear-gradient(135deg, #065f46 0%, #059669 100%);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .conference-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: url('https://img.freepik.com/free-vector/online-conference-video-call-illustration_88138-770.jpg') center/cover;
            opacity: 0.1;
            z-index: 1;
        }

        .conference-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
        }

        .conference-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .conference-desc {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 45px 35px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .pricing-card.featured {
            border-color: #10b981;
            transform: scale(1.02);
        }

        .pricing-card.featured::before {
            content: 'FORMATION COMPLÈTE';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #059669, #10b981);
            color: white;
            padding: 8px 25px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .plan-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .plan-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 20px;
        }

        .nuisibles .plan-icon {
            background: linear-gradient(135deg, #dc2626, #ef4444);
        }

        .desinfectants .plan-icon {
            background: linear-gradient(135deg, #059669, #10b981);
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .plan-desc {
            color: #64748b;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .duration-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f1f5f9;
            color: #475569;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .plan-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1e293b;
            margin: 25px 0 5px;
            text-align: center;
        }

        .plan-price .currency {
            font-size: 1.8rem;
            vertical-align: top;
        }

        .plan-billing {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 35px;
            text-align: center;
        }

        .features-list {
            list-style: none;
            margin-bottom: 35px;
        }

        .features-list li {
            padding: 12px 0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            font-size: 1rem;
        }

        .features-list .feature-icon {
            width: 24px;
            height: 24px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .feature-text {
            flex: 1;
        }

        .feature-highlight {
            font-weight: 600;
            color: #1e293b;
        }

        .cta-button {
            width: 100%;
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nuisibles .cta-button {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
        }

        .desinfectants .cta-button {
            background: linear-gradient(135deg, #059669, #10b981);
            color: white;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .financing-section {
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-top: 60px;
        }

        .financing-header {
            margin-bottom: 40px;
        }

        .financing-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #059669, #065f46);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 20px;
        }

        .financing-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .financing-subtitle {
            color: #64748b;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .financing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .financing-item {
            padding: 25px;
            background: #f8fafc;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .financing-item:hover {
            transform: translateY(-5px);
            background: #f1f5f9;
        }

        .financing-item-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
            margin: 0 auto 15px;
        }

        .financing-item-name {
            font-weight: 600;
            color: #1e293b;
            font-size: 1rem;
        }

        .cpf-notice {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-left: 5px solid #f59e0b;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }

        .cpf-notice-content {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .cpf-icon {
            width: 40px;
            height: 40px;
            background: #f59e0b;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .cpf-text {
            color: #92400e;
            font-weight: 500;
        }

    
        .img-pricing img {
            max-width: 100%;
            height: auto;
            margin: 0 auto;
            border-radius: 15px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .conference-banner {
                padding: 30px 20px;
            }
            
            .conference-title {
                font-size: 1.5rem;
            }

            .financing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .financing-grid {
                grid-template-columns: 1fr;
            }
        }
