 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .container {
            width: 100%;
            max-width: 900px;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        /* Header with Logo */
        .header {
            background: linear-gradient(to right, #07A76B, #07A76B);
            padding: 25px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            position: relative;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .logo i {
            font-size: 28px;
            color: #4a6fa5;
        }
        
        .company-info h1 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .company-info p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .header-tagline {
            font-size: 16px;
            font-weight: 500;
            text-align: right;
            max-width: 300px;
        }
        
        /* Stepper */
        .stepper-container {
            padding: 30px 40px 20px;
            background-color: #f8fafd;
        }
        
        .stepper {
            display: flex;
            justify-content: space-between;
            position: relative;
        }
        
        .stepper::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 10%;
            width: 80%;
            height: 4px;
            background-color: #e0e0e0;
            z-index: 1;
        }
        
        .stepper-progress {
            position: absolute;
            top: 20px;
            left: 10%;
            height: 4px;
            background-color: #4a6fa5;
            z-index: 2;
            transition: width 0.5s ease;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 3;
            width: 25%;
        }
        
        .step-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            font-weight: 700;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }
        
        .step.active .step-icon {
            background-color: #4a6fa5;
            color: white;
            box-shadow: 0 0 0 5px rgba(74, 111, 165, 0.2);
        }
        
        .step.completed .step-icon {
            background-color: #5cb85c;
            color: white;
        }
        
        .step-label {
            font-size: 14px;
            font-weight: 600;
            color: #777;
            text-align: center;
        }
        
        .step.active .step-label {
            color: #4a6fa5;
        }
        
        /* Form Content */
        .form-container {
            padding: 40px;
        }
        
        .form-step {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .form-step.active {
            display: block;
        }
        
        .step-title {
            font-size: 24px;
            color: #333;
         }
        
        .step-description {
            color: #666;
         }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .form-row .form-group {
            flex: 1;
            margin-bottom: 0;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e5eb;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #4a6fa5;
            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
        }
        
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .checkbox-item input {
            width: auto;
        }
        
        /* Form Navigation */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .btn {
            padding: 14px 30px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-prev {
            background-color: #f1f1f1;
            color: #333;
        }
        
        .btn-prev:hover {
            background-color: #e0e0e0;
        }
        
        .btn-next {
            background-color: #4a6fa5;
            color: white;
        }
        
        .btn-next:hover {
            background-color: #3a5a8c;
        }
        
        .btn-submit {
            background-color: #5cb85c;
            color: white;
        }
        
        .btn-submit:hover {
            background-color: #4cae4c;
        }
        
        /* Success Step */
        .success-step {
            text-align: center;
            padding: 40px 20px;
        }
        
        .success-icon {
            width: 100px;
            height: 100px;
            background-color: #5cb85c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }
        
        .success-icon i {
            font-size: 50px;
            color: white;
        }
        
        .success-step h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .success-step p {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .header-tagline {
                text-align: left;
                max-width: 100%;
            }
            
            .stepper-container {
                padding: 20px;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .stepper::before {
                left: 5%;
                width: 90%;
            }
            
            .stepper-progress {
                left: 5%;
            }
        }
        
 .form-group {
    margin-bottom: 24px;
    margin-top: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.checkbox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 8px;
}

.checkbox-item {
    flex: 0 0 auto;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    user-select: none;
}

.checkbox-item label:hover {
    background-color: #f7fafc;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox-text {
    font-size: 15px;
    color: #4a5568;
}

.checkbox-item input[type="checkbox"]:checked + label .checkbox-custom {
    background-color: #4299e1;
    border-color: #4299e1;
}

.checkbox-item input[type="checkbox"]:checked + label .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-item input[type="checkbox"]:checked + label .checkbox-text {
    color: #2d3748;
    font-weight: 500;
}

.checkbox-item input[type="checkbox"]:focus + label .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.form-helper {
    display: block;
    font-size: 13px;
    color: #718096;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 640px) {
    .checkbox-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .checkbox-item {
        width: 100%;
    }
    
    .checkbox-item label {
        padding: 10px 12px;
    }
}
.Message-Section{
    border: solid 1px #5cb85c;
    border-radius: 9px;
    padding: 19px;
    background-color: rgba(7, 167, 108, 0.077);
    
}
.Message-Section span{
    color: #5cb85c;
}
/* Modern Language Switcher Styles */
.language-switcher {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    gap: 0;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 8px;
    border-radius: 16px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 1000;
    overflow: hidden;
}

.language-switcher:hover {
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.lang-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    color: #5a6c7d;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.lang-btn:hover::before {
    transform: translateX(100%);
}

.lang-btn:hover:not(.active) {
    background: rgba(52, 152, 219, 0.08);
    color: #3498db;
    transform: scale(1.05);
}

.lang-btn.active {
    background: linear-gradient(135deg, #5cb85c 0%, #5cb85c 100%);
    color: white;
    box-shadow: 
        0 4px 12px #5cb85c,
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Language flag icons (using emoji) */
.lang-btn[data-lang="en"]::before {
    content: '🇺🇸';
}

.lang-btn[data-lang="fr"]::before {
    content: '🇫🇷';
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .language-switcher {
        position: fixed;
        top: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
        border-radius: 12px;
        padding: 6px;
        box-shadow: 
            0 5px 15px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    
    .lang-btn {
        flex: 1;
        padding: 14px 16px;
        font-size: 14px;
        justify-content: center;
        border-radius: 10px;
    }
    
    .lang-btn.active::after {
        bottom: 3px;
        width: 16px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 15px;
        right: 15px;
        left: 15px;
        padding: 5px;
    }
    
    .lang-btn {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    /* Hide flags on very small screens */
    .lang-btn[data-lang]::before {
        content: '';
    }
    
    /* Show language codes instead */
    .lang-btn[data-lang="en"]::after {
        content: 'EN';
        font-weight: bold;
        margin-left: 5px;
    }
    
    .lang-btn[data-lang="fr"]::after {
        content: 'FR';
        font-weight: bold;
        margin-left: 5px;
    }
    
    .lang-btn.active::after {
        content: '';
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: white;
    }
}

/* Animation for language switch */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.lang-btn.active {
    animation: pulse 0.4s ease;
}