.box {
    cursor: pointer;
    font-size: 22px;
    margin-bottom: 10px;
    padding-top: 10px;
    position: relative;
    width: 100%;
}

.question {
    font-weight: 400;
}

.content {
    display: block;
    font-size: 22px;
    overflow: hidden;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 0px;
    padding-top: 10px;
    width: 90%;
}

.triangle {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    height: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    width: 0;
}

.rotated {
    transform: translateY(-50%) rotate(180deg);
}