.question-title {
    font-weight: 700;
    color: #352D41;
    font-size: 32px;
    line-height: 38.4px;
    text-align: center;
    margin: 140px 0px 50px 0px;
}

.question {
    margin: 60px 0px 120px 0px;
    max-width: 1196px;
}

.question-text {
    display: contents;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #86818D;
}

.question-field {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 32px;
    margin: 32px 0px 0px 0px;
    justify-content: space-between;
    background: #F5F5F5;
    border-radius: 20px;
}

.question-field:hover {
    background-color: #A80532;
}

.question-field:hover span, .question-field:hover .question-text {
    color: white;
}

.question-field.active {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 32px;
    justify-content: space-between;
    background: #A80532;
}

.question-field.active .question-text {
    color: white;
}

.question-field.active .question-arrow {
    color: white;
    transform: rotate(180deg);
    filter: brightness(2);
}

.question-arrow {
    color: #86818D;
    font-size: 27px;
}

.dropdown-content {
    display: none;
}

.dropdown-content.active {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 32px;
    justify-content: space-between;
    background: #F5F5F5;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transform: translateX(0);
}

.dropdown-content p {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .question-field {
        align-items: center;
    }

    .question-title {
        margin: 28px 0px 50px 0px;
    }

    .question-field.active {
        align-items: center;
    }
}

@media screen and (max-width: 390px) {
    .question-title {
        margin: 10px 0px 50px 0px;
    }
}

@media screen and (max-width: 360px) {

    /* Question block */
    .question-field {
        width: auto;
    }

    .question {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}