/* section ajouter temoignage */
    .box_form_star {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-bottom: 8px;
    }
    
    .box_star {
        position: relative;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .box_star i {
        font-size: 30px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--light-white);
        transition: color 0.2s;
        pointer-events: none;
    }
    
    .box_star input[type="radio"] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        z-index: 2;
        margin: 0;
        padding: 0;
    }
    
    .box_star input[type="radio"]:checked + i {
        color: var(--second);
    }
    
    .box_star:hover i {
        color: var(--second);
    }
/* section ajouter temoignage */