.whatsapp-float {
    position: fixed;
    bottom: 20px;  /* La distance du bas */
    right: 20px;  /* La distance de la droite */
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 1000; /* S'assurer qu'il reste au-dessus des autres éléments */
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.whatsapp-float a {
    color: white;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1eb64d;
    transform: scale(1.1);
}
/* Blog */
.blog-post {
    background: #fff;
    max-width: 800px;
    margin: auto;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.6;
}




