.container-sp {
    display: flex;
    align-items: center;
}

.image-sp {
    width: 200px;
    height: 200px;
    margin-left: 20px;
    object-fit: contain;
    margin-top: -60px;
}

.image-sp2 {
    width: 450px;
    height: 550px;
    margin-left: 20px;
    object-fit: contain;
    margin-top: -60px;
}

.img-center {
    max-width: 80%;
    height: auto;
}

.img-center2 {
    max-width: 60%;
    height: auto;
}

.img-center3 {
    max-width: 45%;
    height: auto;
}

.center-content-center {
    text-align: center;
}

.container-livre {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.icon {
    width: 300px;
    height: auto;
    cursor: pointer;
}

/* Style du bouton */
.expand-btn {
    background-color: #fee0f3;
    border: none;
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    color: #6c3457;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.expand-btn::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border-right: 4px solid #e4c0d7;
    border-bottom: 4px solid #e4c0d7;
    pointer-events: none;
}

.expand-btn:active {
    transform: scale(0.98);
    background-color: #fee0f3;
}

.content-educ {
    max-height: 0;
    overflow: hidden;
    background-color: #fee0f3;
    transition: max-height 0.5s ease;
    padding: 0 20px;
    border-radius: 10px;
    margin-top: 10px;
    display: none;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.content-educ.show {
    display: block;
    padding: 20px;
}

.content-educ::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border-right: 4px solid #e4c0d7;
    border-bottom: 4px solid #e4c0d7;
    pointer-events: none;
}

.text-content-educ {
    font-family: 'Poppins', sans-serif;
    color: #6c3457;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.plus-educ {
    font-size: 20px;
    margin-right: 10px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.rotate-educ {
    transform: rotate(45deg);
}

/* Media queries pour rendre responsive */
@media (max-width: 1024px) {
    .image-sp {
        width: 120px; /* Taille réduite mais visible */
        height: 120px;
        margin-top: -40px;
    }
    .image-sp2 {
        width: 250px;
        height: 330px;
    }
    .container-sp {
        flex-direction: column;
        align-items: center;
    }
    .icon {
        width: 250px;
    }
    .expand-btn {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .image-sp {
        display: none;
    }
    .image-sp2 {
        width: 200px;
        height: 270px;
    }
    .container-livre {
        flex-direction: column;
    }
    .icon {
        width: 132px;
    }
    .expand-btn {
        font-size: 12px;
        padding: 8px 20px;
    }
    .content-educ {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .image-sp {
        display: none;
    }
    .image-sp2 {
        width: 150px;
        height: 200px;
    }
    .expand-btn {
        font-size: 10px;
        padding: 5px 15px;
    }
    .icon {
        width: 90px;
    }
}
