.questions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 3%;
    background: #FFF;
    background-image: url("static/img/questions-bg.png");
    background-size: 100% auto;
    background-position: end;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.questions-header {
    color: var(--text-001, #1D242B);
    text-align: center;
    font-family: "Quicksand";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.questions-content {
    display: flex;
    flex-direction: row;
    width: 60%;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 29px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.16);
}