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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            color: #2d3748;
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Navigation */
        nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: #0c4d63;
            text-decoration: none;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            transition: transform 0.3s ease;
        }

        .nav-logo:hover {
            transform: scale(1.05);
        }

        .nav-logo img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            border-radius: 8px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        nav a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: #0c4d63;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Header Hero */
        header {
            background: linear-gradient(135deg, rgba(12, 77, 99, 0.95) 0%, rgba(10, 61, 79, 0.95) 100%);
            color: white;
            padding: 8rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .header-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 400;
            opacity: 0.9;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Banner Card */
        .banner {
            background: white;
            border-radius: 24px;
            padding: 3rem;
            margin: -2rem auto 4rem;
            max-width: 1000px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 3;
        }

        .banner-text h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 1rem;
        }

        .banner-text p {
            color: #718096;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .carousel-placeholder {
            height: 280px;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: italic;
            color: #a0aec0;
            font-size: 1.1rem;
            border: 2px dashed #e2e8f0;
            transition: all 0.3s ease;
        }

        .carousel-placeholder:hover {
            background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
            border-color: #cbd5e0;
        }

        /* Main Content */
        main {
            background: white;
            margin: 0 0 2rem;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        /* Nouveau style pour les sections avec contenu réparti */
        .content-section {
            padding: 5rem 0;
            position: relative;
            border-bottom: 1px solid #f7fafc;
        }

        .content-section:last-child {
            border-bottom: none;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 400px;
        }

        /* Alternance gauche/droite */
        .content-section:nth-child(even) .section-container {
            direction: rtl;
        }

        .content-section:nth-child(even) .section-container > * {
            direction: ltr;
        }

        .section-content {
            padding: 2rem;
        }

        .section-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .visual-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #a0aec0;
            border: 2px dashed #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .visual-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
            border-radius: 20px 20px 0 0;
        }

        .visual-placeholder:hover {
            background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
            border-color: #cbd5e0;
            transform: scale(1.02);
        }

        /* Styles spécifiques pour chaque section */
        #about .visual-placeholder {
            background: linear-gradient(135deg, rgba(12, 77, 99, 0.05) 0%, rgba(10, 61, 79, 0.02) 100%);
        }

        #projects .visual-placeholder {
            background: linear-gradient(135deg, rgba(16, 140, 170, 0.05) 0%, rgba(12, 77, 99, 0.02) 100%);
        }

        #projects .visual-placeholder::before {
            background: linear-gradient(90deg, #108caa, #0c4d63);
        }

        #gmod .visual-placeholder {
            background: linear-gradient(135deg, rgba(14, 94, 118, 0.05) 0%, rgba(12, 77, 99, 0.02) 100%);
        }

        #gmod .visual-placeholder::before {
            background: linear-gradient(90deg, #0e5e76, #0c4d63);
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 1.5rem;
            position: relative;
            line-height: 1.2;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
            border-radius: 2px;
        }

        .section-content p {
            font-size: 1.2rem;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        /* Button */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #0c4d63 0%, #0a3d4f 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(12, 77, 99, 0.4);
            margin-top: 1rem;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(12, 77, 99, 0.6);
            background: linear-gradient(135deg, #0e5e76 0%, #0c4d63 100%);
        }

        .btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .btn:hover::after {
            transform: translateX(4px);
        }

        /* Members Section */
        #members {
            max-width: none;
            padding: 4rem 3rem;
            background: linear-gradient(135deg, #fefbff 0%, #f8f5ff 100%);
        }

        #members .members-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        #members h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        #members h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .member-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(12, 77, 99, 0.1);
            position: relative;
            overflow: hidden;
        }

        .member-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
        }

        .member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(12, 77, 99, 0.2);
        }

        .member-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border: 4px solid rgba(12, 77, 99, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #a0aec0;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .member-card:hover .member-avatar {
            border-color: #0c4d63;
            transform: scale(1.05);
        }

        .member-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .member-role {
            font-size: 1rem;
            color: #0c4d63;
            font-weight: 500;
            background: rgba(12, 77, 99, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .member-description {
            font-size: 0.95rem;
            color: #718096;
            line-height: 1.6;
        }

        

        /* Footer */
        footer {
            background: linear-gradient(135deg, #f8feff 0%, #f0f9fb 100%);
            padding: 4rem 2rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(12, 77, 99, 0.1);
            margin-top: 2rem;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-contact {
            margin-bottom: 3rem;
        }

        .footer-contact h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-contact h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
            border-radius: 2px;
        }

        .footer-contact p {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-contact-links {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            justify-content: center;
        }

        .footer-contact-links a {
            color: #0c4d63;
            text-decoration: none;
            font-weight: 500;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border: 2px solid transparent;
        }

        .footer-contact-links a:hover {
            background: #0c4d63;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(12, 77, 99, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .footer-copyright {
            color: #718096;
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(12, 77, 99, 0.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                gap: 1.5rem;
            }

            h1 {
                font-size: 2.5rem;
            }

            .banner {
                grid-template-columns: 1fr;
                margin: -1rem 1rem 2rem;
                padding: 2rem;
            }

            .section-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1rem;
            }

            .content-section:nth-child(even) .section-container {
                direction: ltr;
            }

            .section-content {
                padding: 1rem;
            }

            .visual-placeholder {
                height: 200px;
            }

            h2 {
                font-size: 2rem;
            }

            .footer-contact-links {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .members-grid {
                grid-template-columns: 1fr;
            }

            #members {
                padding: 2rem 1.5rem;
            }

            .legal-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Animation scroll */
        .content-section {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-section:nth-child(1) { animation-delay: 0.1s; }
        .content-section:nth-child(2) { animation-delay: 0.2s; }
        .content-section:nth-child(3) { animation-delay: 0.3s; }
        .content-section:nth-child(4) { animation-delay: 0.4s; }
        .content-section:nth-child(5) { animation-delay: 0.5s; }

                /* Styles du carrousel intégrés au design existant */
        .banner-carousel {
            height: 280px;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .banner-carousel:hover {
            border-color: #cbd5e0;
            transform: scale(1.02);
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 14px;
        }

        /* Boutons de navigation supprimés */
        
        /* Indicateurs supprimés */

        /* Overlay pour améliorer la lisibilité des contrôles */
        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 100%);
            z-index: 1;
        }

       /* .carousel-btn, .carousel-indicators {
            /* Supprimé
        }

        /* Conteneur de démonstration */
        .demo-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .demo-text h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 1rem;
            position: relative;
        }

        .demo-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
            border-radius: 2px;
        }

        .demo-text p {
            color: #718096;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .demo-container {
                grid-template-columns: 1fr;
                margin: 0 1rem;
                padding: 2rem;
            }

            .banner-carousel {
                height: 200px;
            }

            .carousel-btn {
                padding: 10px 12px;
                font-size: 16px;
            }

            .carousel-btn.prev {
                left: 10px;
            }

            .carousel-btn.next {
                right: 10px;
            }
        }

        .recrutement-btn {
            background: linear-gradient(135deg, #0c4d63 0%, #0a3d4f 100%);
            color: white !important;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(12, 77, 99, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .recrutement-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(12, 77, 99, 0.6);
            color: white !important;
        }

        .recrutement-btn::after {
            display: none;
        }

        .mention{
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .mention::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #718096, #718096);
            transition: width 0.3s ease;
        }

        .mention:hover {
            color: #718096;
        }

        .mention:hover::after {
            width: 100%;
        }