.accordion {
    margin: auto;
}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-header {
    background-color: #f5efe8;
    cursor: pointer;
    padding: 1.3rem 2rem;
    text-align: left;
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    border-radius: 6px;
    color: #282540;
}

.accordion-header:hover {
    background-color: #f5efe8;
    color: #282540;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;

    color: rgba(40, 37, 64, 0.856);
    font-size: 1rem;
    line-height: 1.6rem;

    &.active {
       padding: 1rem;

       & div {
           padding-top: 0.3rem;
       }
    }

    & ul li {
       line-height: 1.3rem;
    }
}

.arrow {
    transition: transform 0.3s;
}

.active {
    max-height: 600px;
}

.active + .arrow {
    transform: rotate(90deg);
}

.active strong {
    font-size: 1rem;
    color: rgba(40, 37, 64, 0.69);
}

.active ul {
    margin: 10px 0;
}	

.active ul li {
    font-size: 0.9rem;
    color: rgba(40, 37, 64, 0.69);
}

.arrow.rotate {
  transform: rotate(360deg);
  transition: 0.3s;
}