.contenedor-acordion{
    display: flex;
    justify-content: center;
}

details {
    width: 80%;
}

details summary {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    background-color: #f7f7f7;
    border: 1px solid #d9d9d9bd;
    border-radius: 10px;
}

details summary::marker {
    content: '';
}

details[open] summary::before {
    font-family: 'bootstrap-icons' !important;
    margin-right: 2px ;
    content: '\F229 ';
    display: inline-block;
    font-size: 1rem;
    color: #003087;
}

details summary::before {
    font-family: 'bootstrap-icons' !important; 
    margin-right: 2px ;
    content: '\F231 ';
    display: inline-block;
    font-size: 1rem;
    color: #003087;
}

details p {
    margin: 0;
    padding: 10px;
    background-color: #fafafa;
    border: 1px solid #ccc;
    border-top: none;
}