.agenda-wrapper {
    margin-block: 30px;
    background-color: #F9F1ECB3;
    border-radius: 6px;
    overflow: hidden;
}

.agenda-content {
    padding: 50px;

    ul {
        list-style: disc;
        padding-left: 30px;
        margin-bottom: 15px;

        li {
            font-family: "Roboto", Sans-serif;
            font-size: 23px;
            font-weight: 400;
            line-height: 30px;
        }
    }

    p {
        margin-bottom: 10px;
        font-family: "Roboto", Sans-serif;
        font-size: 23px;
        font-weight: 400;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
    .agenda-content {
        padding: 15px;

        ul {


            li {
                font-size: 17px;

                line-height: 26px;
            }
        }

        p {
            font-size: 17px;
            line-height: 26px;
        }
    }
}