 
.bouton-flottant-accueil {
    /* Positionnement Fixe */
    position: fixed; /* Reste visible même en faisant défiler la page */
    top: 20px;       /* Distance du haut de la fenêtre */
    right: 20px;     /* Distance du côté droit de la fenêtre */
    z-index: 1000;   /* S'assure qu'il est au-dessus de tout autre contenu */

    /* Style du Bouton */
    padding: 10px 15px;
    background-color: #007bff; /* Couleur bleue (à adapter à votre charte) */
    color: white;
    text-decoration: none; /* Enlève le soulignement du lien */
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ajoute de la profondeur */
    transition: background-color 0.3s;
}



.site-logo {
    position: absolute !important;
    top: 0px !important;
    left: 10px !important;
    width: 80px !important;
    height: auto !important;
    z-index: 1000 !important;
}
 
 :root { 
    --color-dark-blue: #0D1A39; 
    --color-red: #B03A40; 
    --color-light-blue: #3A70B0; 
    --color-white: #ffffff; 
    --color-grey-light: #f9f9f9; 
    --color-body-text: #333333; 
} 
 .hero-service {
    background-color: var(--color-dark-blue); /* Bleu foncé de Tacc */
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
 }
 .hero-service h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
 }
 .hero-service p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
 }
 .btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-red); /* Rouge d'accentuation */
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
 }
 .btn-cta:hover {
    background-color: #9C3338; /* Rouge légèrement plus foncé au survol */
 }
 /* --- Section des Capacités (Grille) --- */
 .capacites {
    padding: 60px 0;
    background-color: var(--color-grey-light); /* Fond gris clair pour détacher la section */
    text-align: center;
 }
 .capacites h2 {
    color: var(--color-dark-blue);
    margin-bottom: 40px;
 }
 .grid-capacites {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; 
}
 .capacite-item {
    flex: 1; /* Prend une part égale de l'espace */
    min-width: 250px;
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
 }
 .capacite-item img {
    width: 200px; /* Taille des icônes */
    height: auto;
    margin-bottom: 15px;
}
 .capacite-item h3 {
    color: var(--color-dark-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
 }
 .capacite-item p {
    color: var(--color-body-text);
 }
 /* --- Section Galerie de Photos --- */
 .galerie-transformation {
    padding: 60px 0;
    text-align: center;
 }
 .galerie-transformation h2 {
    color: var(--color-dark-blue);
    margin-bottom: 10px;
 }
 .galerie-transformation .sous-titre {
    margin-bottom: 30px;
    color: var(--color-body-text);
 }
 .galerie-photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
 }
 .photo-item {
    width: 300px; /* Taille fixe pour les images de la galerie */
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }
 .photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Assure que l'image couvre la zone sans déformation */
    transition: transform 0.5s ease;
 }
 .photo-item img:hover {
    transform: scale(1.05); /* Effet de zoom au survol */
 }
 .photo-item p {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 10px 0;
    margin: 0;
    font-size: 0.9rem;
 }
 .btn-cta-small {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-light-blue); /* Couleur secondaire pour le CTA */
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
 }
 .btn-cta-small:hover {
    background-color: #31649E;
 }