        /* --- HERO SECTION STYLE GLPI EXACT --- */
        .hero-banner {
            position: relative;
            background-color: var(--mt-glpi-bg);
            /* Hauteur augmentée */
            padding: 100px 0; 
            text-align: center;
            border-bottom: 1px solid #b1bdcb;
            overflow: hidden;
            
            /* --- IMAGE DE FOND banniere --- */
            background-image:linear-gradient(to bottom, rgb(22, 45, 70, 1) 10%, rgb(22, 45, 70, 0.7) 50%, rgb(240, 245, 240, 0.5) 100%), url('/images/banniere.webp'); 
            background-position: center bottom; /* Aligné en bas comme l'original */
            background-repeat: no-repeat;
            background-size: cover; /* Couvre toute la largeur */
        }

        .hero-content { position: relative; z-index: 10; }
        .hero-banner h1 { 
            font-family: 'Alkatra'; font-size: 2.5rem; 
            color: #fff; margin-bottom: 15px;
        }
        .hero-banner p { 
            font-size: 1rem; color: #fff; max-width: 900px; 
            margin: 0 auto 25px; line-height: 1.6; font-weight: 500;
        }

        .search-box {
            max-width: 700px; margin: 0 auto;
            background: white; border-radius: 8px;
            padding: 10px 15px; display: flex; align-items: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        .search-box input { border: none; width: 100%; outline: none; font-size: 1rem; }
        .search-box i { color: #94a3b8; margin-right: 15px; font-size: 1.1rem; }
		
		/* --- CONTENU --- */
        .service-card {
            background: white; border-radius: 12px; padding: 25px;
            height: 100%; display: flex; align-items: flex-start;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            transition: 0.3s; cursor: pointer; border: 1px solid transparent;
        }
        .service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.07); border-color: #e2e8f0; }
        .card-emoji { font-size: 2.5rem; margin-right: 20px; line-height: 1; }
        .card-body h3 { font-size: 1.2rem; color: var(--mt-dark); font-weight: 700; margin-bottom: 8px; }
        .card-body p { font-size: 0.9rem; color: #64748b; margin: 0; line-height: 1.5; }

        .emergency-strip {
            background: white; border-left: 6px solid #ef4444;
            padding: 20px; border-radius: 8px; margin-top: 40px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }