
        /* Variables pour les couleurs */
        :root {
            --orange: #F47920;
            --yellow: #FFCC29;
            --blue: #1978BC;
            --light-blue: #5CAFED;
            --dark-blue: #155A8E;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            margin-top: 50px;
        }

        /* 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;
        }
        
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 40px;
            animation: fadeIn 1s ease-in;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--blue);
            margin-left: 10px;
            align-items: left;
        }
        .logo img{
            height: 50px;
            width: 50px;
            margin-left: 10px;
            border-radius: 50px;
            float: left;

        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--orange);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--blue);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--blue);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .active::after {
            width: 100% !important;
        }
        
        .menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark-gray);
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                flex-direction: column;
                background-color: white;
                padding: 1rem 0;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 1rem 0;
                text-align: center;
            }

            .menu-btn {
                display: block;
            }

            nav {
                position: relative;
            }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(to right, rgba(30, 120, 180, 0.9), rgba(241, 100, 44, 0.8)), url('/api/placeholder/1200/800') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            padding-top: 70px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            opacity: 0;
            animation: slideUp 1s ease-out forwards;
            animation-delay: 0.5s;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--yellow);
            color: var(--dark-gray);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Main Content */
        main {
            padding: 60px 0;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 30px;
        }

        /* Contact Form */
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            animation: slideInFromLeft 1s ease-out;
        }

        .form-title {
            color: var(--blue);
            margin-bottom: 25px;
            font-size: 1.8rem;
            position: relative;
        }

        .form-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--yellow));
            border-radius: 2px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-gray);
            font-weight: 500;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            border-color: var(--blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(25, 120, 188, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--blue), var(--dark-blue));
            color: white;
            border: none;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: block;
            width: 100%;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(25, 120, 188, 0.3);
        }
      
        /* Contact Info */
        .contact-info {
            padding: 30px;
            background: linear-gradient(135deg, var(--blue), var(--dark-blue));
            color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: slideInFromRight 1s ease-out;
        }

        .info-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            position: relative;
        }

        .info-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--yellow));
            border-radius: 2px;
        }

        .info-item {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }

        .info-icon {
            margin-right: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--yellow);
        }

        .info-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--yellow);
        }

        .info-text p, .info-text a {
            font-size: 1rem;
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .info-text a:hover {
            color: var(--yellow);
        }

        .social-links {
            display: flex;
            margin-top: 30px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            cursor: pointer;
            transition: transform 0.3s, background-color 0.3s;
        }

        .social-icon:hover {
            transform: translateY(-3px);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        /* Footer */
        footer {
            background-color: var(--blue);
            color: white;
            padding: 25px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }

        .footer-links {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--light-blue);
            margin: 0 10px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--yellow);
        }

        .footer-text {
            font-size: 0.9rem;
            color: #ccc;
        }

        /* Animations */
        @keyframes slideInFromLeft {
            0% {
                transform: translateX(-30px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInFromRight {
            0% {
                transform: translateX(30px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        .page-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--dark-blue);
            font-size: 2.5rem;
            animation: fadeIn 1.2s ease-out;
            position: relative;
        }

        .page-title:after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -15px;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--yellow));
            border-radius: 2px;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                order: -1;
            }
        }

        @media (max-width: 600px) {
            .logo {
                font-size: 2rem;
            }
            
            .logo-accent {
                font-size: 2.3rem;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 8px 0;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .form-title, .info-title {
                font-size: 1.5rem;
            }
        }
    