.what-to-expect-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    color: var(--color-black);

}

.what-to-expect-container .what-to-expect-list {

    display: flex;
    flex-direction: column;
    gap: 48px;
}

.what-to-expect-list-wrapper{
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.what-to-expect-container ul li.body-l {
    line-height: 1.4546;
}

.what-to-expect-container .what-to-expect-list ul li:not(:last-child) {
    margin-bottom: 24px;
}

.what-to-expect-container ul {
    padding-left: 30px;
}

.what-to-expect-container ul li {
    list-style: disc;
}

.what-to-expect-container .content-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.what-to-expect-container .important-note-image-container img {
    height: 434px;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .what-to-expect-container {
        max-width: 390px;
        gap: 40px;
    }

    .what-to-expect-container .what-to-expect-list ul li:not(:last-child) {
        margin-bottom: 15px;
    }

    .what-to-expect-container ul li.body-l {
        line-height: 28px;
    }

    .what-to-expect-container .what-to-expect-list {
        gap: 40px
    }

    .what-to-expect-container .important-note-image-container img {
        height: 273px;
    }

    .what-to-expect-container ul {
        padding-left: 25px;
    }

}