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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

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

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

        #partners h2 {
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

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

        #partners > .partners-content > p {
            font-size: 1.2rem;
            color: #718096;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .partner-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;
        }

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

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

        .partner-logo {
            width: 120px;
            height: 120px;
            border-radius: 20px;
            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: 2rem;
            color: #a0aec0;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .partner-logo img {
            width: 80%;
            height: 80%;
            object-fit: contain;
            border-radius: 10px;
        }

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

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

        .partner-type {
            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;
        }

        .partner-description {
            font-size: 0.95rem;
            color: #718096;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .partner-link {
            display: inline-block;
            padding: 0.7rem 1.5rem;
            background: linear-gradient(135deg, #0c4d63 0%, #0a3d4f 100%);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .partner-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(12, 77, 99, 0.3);
        }

        /* Partnership Benefits Section */
        .partnership-benefits {
            margin-top: 4rem;
            padding: 3rem 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .partnership-benefits h3 {
            font-size: 2rem;
            color: #2d3748;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

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

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

        .benefit-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: 15px;
            background: linear-gradient(135deg, #fefbff 0%, #f8f5ff 100%);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(12, 77, 99, 0.1);
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #0c4d63;
        }

        .benefit-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .benefit-text {
            font-size: 0.9rem;
            color: #718096;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #partners {
                padding: 2rem 1rem;
            }

            #partners h2 {
                font-size: 2rem;
            }

            .partners-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .partner-card {
                padding: 1.5rem;
            }

            .partnership-benefits {
                margin-top: 2rem;
                padding: 2rem 1rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* 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: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
        }

        .nav-logo {
            height: 45px;
            width: 45px;
            border-radius: 50%;
            object-fit: cover;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            transition: transform 0.3s ease;
            border: 2px solid rgba(12, 77, 99, 0.2);
        }

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

        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%;
        }

        nav a:active {
            transform: translateY(0);
        }

        /* Animation de clic pour les liens nav */
        nav a.clicked {
            animation: navClick 0.3s ease;
        }

                @keyframes navClick {
            0% { transform: scale(1); }
            50% { transform: scale(0.95); }
            100% { transform: scale(1); }
        }

                        /* Bouton Accueil spécial */
        .home-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;
        }

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

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

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

        html {
            scroll-behavior: smooth;
        }

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

        /* 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);
        }

        .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%;
        }