.personnalise ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.personnalise ul li {
    list-style: none;
}

.personnalise ul li a {
    width: 110px;
    height: 110px;
    background: #8bc34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white !important;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    padding: 10px;
}

.personnalise ul li a:hover {
    transform: scale(1.08);
    background: #ff7b00;
}