#soinsSection{
    background-image: url("../../../images/backgrounds/bg-soins-section.webp"); /* Remplacez par le chemin de votre image */
    background-size: cover; /* L'image couvre tout l'espace disponible */
    background-position: center; /* Centrer l'image */
    background-attachment: fixed; /* Fixe l'image pour suivre le scroll */
    height: max-content;
    justify-content: center;
    align-items: start;
    padding: 2rem;
    gap: 5rem;

}

.soins-section img{
    width: 494.98px;
    height: 494.98px;
    transition: transform 0.3s ease, scale 0.3s ease;
}
.soins-section img:hover {
    transform: rotate(5deg) scale(0.9);
}


.soins-section .flex-column{
    justify-content: center;
    gap: 1rem;
    width: 529.02px;
}

.soins-section h2, .soins-section p{
    margin: 0;
}

.soins-section button{
    background-color: var(--secondary-color);
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    width: 150px;
    height: 48px;

}

.soins-section button:hover{
    color: white;
    background-color: var(--primary-color);
}

.ti-next, .ti-prev {
    display: block !important;
}


