        /* VARIABLES DE COULEURS */
        :root {
            --primary-color: #852F1D; 
            --secondary-color: #002d5e;
            --accent-color: #f8f9fa;
            --text-dark: #2d3436;
            --text-light: #636e72;
            --white: #ffffff;
	    --button-over: #701907;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        /* NAVIGATION */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        .navbar-brand img {
            max-height: 100px;
        }
        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            margin-left: 20px;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color)
        }

	/* Style pour la barre verticale */
	.separator-phone {
		width: 1px;
		height: 30px;
		background-color: black;
		margin-left: 2px;
		margin-right: -20px;
		display: inline-block;
	}

	.phone-number {
		color: var(--primary-color) !important;
		font-weight: bold;
	}

	.nav-link small {
		color: black;
	}

	.nav-link:hover {
		text-decoration: none;
	}


        /* HERO SECTION */
        .hero-section {
	    background:url('images/bandeau-2-min.jpg') center/cover;
	    filter:
	      sepia(100%) /* Convertit en sépia */
		       saturate(200%) /* Augmente la saturation */
		       hue-rotate(200deg) /* Tourne vers le bleu */
		       brightness(80%); /* Ajuste la luminosité */
            color: var(--white);
            padding: 120px 0 120px 0;
            text-align: center;
	    border-radius: 0 0 80% 80% / 0 0 80% 80%; /* Création de la courbe */
	}

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            opacity: 0.9;
        }

        /* SECTION APPROCHE */
        .approach-section {
            padding: 160px 0;
            background-color: var(--white);
        }
        .section-subtitle {
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 15px;
            display: block;
        }
        .intro-text {
            max-width: 700px;
            margin: 0 auto 60px auto;
            font-size: 1.2rem;
            color: var(--text-light);
        }

        /* CARDS (LES POINTS CLÉS) */
        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            height: 100%;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid #eee;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            border-color: var(--primary-color);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: rgba(0, 86, 179, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px auto;
            font-size: 35px;
            transition: all 0.3s ease;
        }
        .feature-card:hover .icon-box {
            background: var(--primary-color);
            color: var(--white);
        }
        .feature-card h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        .feature-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin: 0;
        }

        /* FOOTER */
        footer {
            background: #1a1a1a;
            color: #888;
            padding: 50px 0;
            text-align: center;
        }
        .footer-logo {
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: block;
            font-size: 1.5rem;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.1rem; }
	    .approach-section { padding: 60px 0; }
	}

	.banner-container {
		display: flex; /* Aligne les colonnes côte à প্রস্তুত */
		height: 50vh; /* Prend toute la hauteur de l'écran */
		width: 100%;
		overflow: hidden;
	}

	/* Style commun aux colonnes */
	.column {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 40px;
		color: white;
	}

	/* --- COLONNE IMAGE --- */
	.image-col {
            flex: 1; /* La colonne image est plus large que les autres */
            background-image: url('images/utilisateurs-min.jpg'); /* TON IMAGE ICI */
            background-size: cover;
            background-position: center;
        }

	/* L'effet de voile bleu sur l'image */
	.overlay {
		position: absolute;
		top: 0; left: 0; width: 100%; height: 100%;
		background-color: rgba(91, 117, 227, 0.5);
	}

	/* --- COLONNES TEXTE (Teal) --- */
	.info-col, .network-col {
		flex: 1;
		background-color: var(--primary-color) 
	}

	/* Le texte GÉANT en arrière-plan (l'effet stylé) */
	.bg-text {
		position: absolute
	}

	/* L'effet de texte flou/géant en arrière-plan */
	.text-blur {
		position: absolute;
		top: 25%;
		left: 50%;
		transform: translate(-50%, -50%); /* Centre le texte parfaitement */
		font-size: 4rem;        /* Taille géante */
		font-weight: bold;
		opacity: 0.15;          /* Très transparent pour l'effet filigrane */
		margin: 0;
		z-index: 1;             /* Place le texte derrière le contenu */
		white-space: nowrap;    /* Empêche le texte de revenir à la ligne */
		pointer-events: none;   /* Permet de cliquer "à travers" le texte */
	}

	.service-section {
            padding: 160px 0;
            background-color: var(--white);
	    margin-bottom: -160px;
        }

        /* Style des titres de section */
        .section-heading h4 {
            color: var(--primary-color);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .section-heading h2 {
            color: var(--text-dark);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 50px;
        }

        /* --- STYLE DES CARTES (Le cœur du travail) --- */
        .service-card {
            background: #ffffff;
            padding: 60px 40px;
            border-radius: 15px; /* Coins légèrement arrondis */
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
            height: 100%;
        }

        /* Effet au survol pour le côté interactif */
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        /* Style des icônes */
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            display: inline-block;
        }

        /* Style du titre de la carte */
        .service-card h3 {
            color: var(--text-dark);
            font-size: 1.2rem;
            font-weight: 550;
            margin-bottom: 10px;
        }

        /* Style du texte de description */
        .service-card p {
            color: var(--text-muted);
            line-height: 1.5;
            font-size: 0.85rem;
            margin-bottom: 0;
        }

        .contact-section {
            padding: 160px 0;
            background-color: var(--white);
        }

        /* --- COLONNE GAUCHE : FORMULAIRE --- */
        .form-section {
            flex: 1;
            min-width: 300px;
        }

        .form-section h2 {
            color: var(--text-</strong>dark);
            font-size: 32px;
            margin-bottom: 10px;
        }

        .form-section p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 16px;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Deux colonnes pour Nom et Email */
            gap: 20px;
        }

        .full-width {
            grid-column: span 2;
        }

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

        input, textarea {
            width: 100%;
            padding: 15px;
            border: none;
            background-color: #eef2f1;
            border-radius: 8px;
            font-family: inherit;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
        }

        input:focus, textarea:focus {
            background-color: #eef2f1;
            box-shadow: inset 0 0 0 1px var(--primary-color);
        }

        textarea {
            height: 150px;
            resize: none;
        }

        /* Checkbox Style */
        .checkbox-group {
            grid-column: span 2;
            display: flex;
            align-items: center;
            font-size: 14px;
            color: var(--text-light);
            margin-top: 10px;
        }

        .checkbox-group input {
            width: auto;
            margin-right: 10px;
        }

        .policy-link {
            color: var(--primary-color);
            text-string: none;
            cursor: pointer;
        }

        /* Bouton */
        .btn-submit {
            grid-column: span 2;
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.3s ease;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background-color: var(--button-over);
            transform: translateY(-2px);
        }

	.legal-links-bottom {
            margin-top: 10px;
            display: flex;
            justify-content: center;
	    gap: 20px;
	    flex-wrap: wrap;
	}

	.legal-links-bottom a {
		color: #666;
		text-decoration: none;
		font-size: 12px;
		transition: color 0.3s ease;
	}

	.legal-links-bottom a:hover {
		color: #a0a0a0;
		text-decoration: underline;
	}

	.back-to-top {
		/* Positionnement fixe en bas à droite */
		position: fixed;
		bottom: 30px;
		right: 30px;

		/* Taille et forme */
		width: 50px;
		height: 50px;
		border-radius: 50%; /* Forme ronde */

		/* Style visuel */
		background-color: var(--primary-color); 
		color: white;
		border: none;
		cursor: pointer;
		font-size: 20px;

		/* Ombre et effet de transition */
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s ease;

		/* État initial : invisible */
		opacity: 0;
		visibility: hidden;
		z-index: 1000; /* Pour être sûr qu'il passe au-dessus de tout */
	}

	/* Effet au survol */
	.back-to-top:hover {
		background-</strong>color: #1d4ed8;
	transform: scale(1.1); /* Grossit légèrement */
	}

	/* Classe qui sera ajoutée par le JavaScript pour afficher le bouton */
	.back-to-top.show {
		opacity: 1;
		visibility: visible;
	}

	 /* Style Contenu */
        .legal-container {
            padding: 60px 0;
        }
        .legal-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        .legal-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .legal-section {
            margin-bottom: 40px;
        }
        .legal-section h2 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .legal-section h2 i {
            margin-right: 10px;
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        .legal-text {
            background-color: var(--light-bg);
            padding: 25px;
            border-left: 4px solid var(--secondary-color);
            border-radius: 0 8px 8px 0;
        }

	/* Style Corporate - Bouton Plein */
	.btn-extranet {
		background-color: var(--primary-color); 
		color: #ffffff;            /* Texte blanc pour un contraste parfait */
		margin-left: 50px;
		padding: 8px 18px;
		border-radius: 4px;        /* Coins légèrement carrés pour le sérieux */
		text-decoration: none;
		font-weight: 600;
		font-size: 0.9rem;
		transition: background-color 0.3s ease;
	}

	.btn-autranet:hover {
		background-color: #008a8a; /* Une version un peu plus sombre au survol */
		color: #ffffff;
	}

	/* Style du widget (le conteneur invisible) */
.newsletter-widget {
    position: fixed;
    right: 0;
    top: 20%; /* Positionné verticalement au milieu de la hauteur */
    z-index: 9999;
    display: flex;
    align-items: flex-start;
}

.newsletter-tab {
    /* Positionnement fixe à droite */
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;

    /* Style du bouton */
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    padding: 15px 15px 15px 15px; /* Padding identique partout */
    
    /* L'ASTUCE : On définit une largeur maximale très petite */
    max-width: 45px; 
    overflow: hidden; /* Cache le texte qui dépasse */
    white-space: nowrap; /* Empêche le texte de revenir à la ligne pendant l'animation */
    
    /* Animation fluide */
    transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;
    
    display: flex;
    align-items: center;
}

/* État au survol (Hover) */
.newsletter-tab:hover {
    max-width: 200px; /* On l'agrandit assez pour voir le texte */
    background-color: var(--button-over);
}

/* Style de l'icône */
.tab-icon {
    font-size: 20px;
    min-width: 20px; /* Empêche l'icône de bouger ou rétrécir */
    display: flex;
    justify-content: center;
}

/* Style du texte */
.tab-text {
    margin-left: 10px;
    opacity: 0; /* Invisible au début */
    transition: opacity 0.3s ease;
    font-weight: bold;
    font-size: 14px;
}

/* On fait apparaître le texte quand on survole le bouton */
.newsletter-tab:hover .tab-text {
    opacity: 1;
}

/* La nouvelle classe pour cacher le bouton */
.newsletter-tab.is-hidden {
    display: none; /* Supprime totalement le bouton du flux de la page */
}

.newsletter-panel {
    position: fixed;
    right: -380px; /* Caché par défaut (hors de l'écran) */
    top: 0;
    width: 380px;
    height: 100vh;
    background-color: white;
    box-shadow: -15px 0 15px rgba(0,0,0,0.2);
    transition: right 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); /* Animation fluide */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

/* Classe ajoutée par le JS pour afficher le panneau */
.newsletter-panel.open {
    right: 0;
}

/* Contenu interne */
.newsletter-content h3 {
    margin-top: 0;
    color: #2c3e50;
}

.newsletter-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.newsletter-content input[type="email"] {
	box-sizing: border-box; /* Très important pour la largeur */
	width: 100%;
	padding: 15px;
	margin: 20px 0 10px 0;
	border: none;
	background-color: #eef2f1;
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
	outline: none;
	transition: all 0.3s ease;
}

.btn-subscribe {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color); 
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-subscribe:hover {
    background-color: var(--button-over);
}

/* Bouton Fermer (X) */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-btn:hover {
    color: #333;
}

#newsletter-message {
    margin-top: 15px;
    font-size: 13px;
}


