  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
            background: linear-gradient(#0c3e74 0%, #2c455f 49%, #05172a 100%);
            min-height: 100vh;
            color: #ffffff;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            margin-top: 100px;
            text-align: center;
            padding: 60px 0;
            position: relative;
            background: rgba(5, 23, 42, 0.3);
            border-radius: 20px;
            margin-bottom: 40px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(12, 62, 116, 0.2), transparent),
                        radial-gradient(circle at 70% 80%, rgba(44, 69, 95, 0.2), transparent);
            pointer-events: none;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .header h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }


        .header p {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-top: 15px;
            text-align: center;
            color: #ffffff;
        }

        .content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .contact-info {
            background: rgba(5, 23, 42, 0.4);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-card {
            background: rgba(12, 62, 116, 0.3);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #0c3e74, #2c455f, #05172a);
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(12, 62, 116, 0.2);
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(12, 62, 116, 0.4);
        }

        .info-title {
            font-size: 1.4rem;
            color: #ffffff;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 600;
        }

        .info-text {
            color: #cbd5e1;
            line-height: 1.6;
            font-size: 1rem;
        }

        .icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0c3e74, #2c455f);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(12, 62, 116, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-section {
            background: rgba(5, 23, 42, 0.4);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .map {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 15px;
            transition: all 0.3s ease;
            filter: grayscale(20%) contrast(1.1);
        }

        .map:hover {
            transform: scale(1.02);
            filter: grayscale(0%) contrast(1.2);
        }

        .form-section {
            background: rgba(5, 23, 42, 0.4);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }

        .form-title {
            text-align: center;
            font-size: clamp(2rem, 5vw, 2.5rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 40px;
            position: relative;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #0c3e74, #2c455f, #05172a);
            border-radius: 2px;
        }

        .form {
            display: grid;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        label {
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
            font-size: 1rem;
        }

        input, textarea {
            padding: 15px 20px;
            background: rgba(12, 62, 116, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            font-size: 1rem;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        input::placeholder, textarea::placeholder {
            color: #94a3b8;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #2c455f;
            box-shadow: 0 0 0 4px rgba(44, 69, 95, 0.2);
            transform: translateY(-2px);
            background: rgba(12, 62, 116, 0.3);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #0c3e74, #2c455f);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
            margin-top: 20px;
            justify-self: center;
            min-width: 200px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(12, 62, 116, 0.4);
            background: linear-gradient(135deg, #0e4682, #2f4b68);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .success-message {
            background: linear-gradient(135deg, #0c3e74, #2c455f);
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            text-align: center;
            display: none;
            animation: slideDown 0.5s ease;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .Name {
            text-align: center;
            font-weight: 600;
            color: #ffffff;
            margin-top: 150px;
            margin-bottom: 10px;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: clamp(2rem, 8vw, 2.5rem);
            }
            
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .logo-cae {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .container {
                padding: 15px;
            }
            
            .header, .contact-info, .map-section, .form-section {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            body {
                background: linear-gradient(#0e3763 0%, #2c455f 49%, #05172a 100%);
            }

            .header h1 {
                font-size: clamp(1.5rem, 8vw, 1.5rem);
            }
            
            .form-title {
                font-size: clamp(1rem, 6vw, 2rem);
            }

            .header, .contact-info, .map-section, .form-section {
                padding: 20px 15px;
            }

            .info-card {
                padding: 20px;
                margin-bottom: 15px;
            }

            .icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .info-title {
                font-size: 1.2rem;
            }

            .submit-btn {
                padding: 15px 30px;
                font-size: 1rem;
                min-width: 180px;
            }
        }

        /* Animation d'entrée */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

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

        .info-card:nth-child(1) { animation-delay: 0.1s; }
        .info-card:nth-child(2) { animation-delay: 0.2s; }
        .info-card:nth-child(3) { animation-delay: 0.3s; }

        /* Améliorations pour tablettes */
        @media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
            .header {
                padding: 50px 30px;
            }

            .header h1 {
                font-size: clamp(2.5rem, 7vw, 3.5rem);
            }

            .content {
                gap: 35px;
            }

            .contact-info, .map-section, .form-section {
                padding: 35px;
            }

            .form-row {
                gap: 20px;
            }

            .info-card {
                padding: 22px;
                margin-bottom: 18px;
            }
        }

        /* Désactiver les effets hover sur mobile */
        @media (hover: none) and (pointer: coarse) {
            .info-card:hover,
            .map:hover,
            .submit-btn:hover {
                transform: none;
                box-shadow: none;
            }

            .info-card:active {
                transform: scale(0.98);
            }

            .submit-btn:active {
                transform: scale(0.95);
            }
        }
    