.accordion-006 {
    max-width: 100%;
    margin-bottom: 7px;
    background-color: #f2f2f2;
    border-radius: 5px;
}

.accordion-006 summary {
    display: flex;
    justify-content: space-between;
    position: relative;
    color: #333;
    padding: 0.5rem 2rem;
    font-weight: 400;
    margin-top: -1rem;
    font-size: 1.6rem;
    cursor: pointer;
    background-color: #DDD;
    border-radius: 5px;
}

.accordion-006 summary::-webkit-details-marker {
    display: none;
}

.accordion-006 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    margin-top: 8px;
    margin-right: 10px;
    border-bottom: 3px solid #666;
    border-right: 3px solid #666;
    content: '';
    transition: transform .3s;
}

.accordion-006[open] summary::after {
    transform: rotate(225deg);
}

.accordion-006 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-006[open] p {
    transform: none;
    opacity: 1;
}