.tutorial-collapse__title {
    background-color: #1F1F1F;
    color: white;
    cursor: pointer;
    padding: 18px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
}

.tutorial-collapse__title span {
    background: linear-gradient(to right, #FEDE5E 75%, #FFCC68 90%, #FDF8BE 100%);
    background-clip: text;
    color: transparent;
}

.tutorial-collapse__title:hover {
    background-color: #555;
}

.tutorial-collapse__title.active {
    background-color: #555;
    margin: 0;
}

.tutorial-collapse__content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    background-color: #f1f1f1;
    transition: max-height 0.2s ease-out;
}

.tutorial-collapse__content p {
    margin: 18px 0;
}