.agb {
    font-size: var(--FS11);
    ol {
    counter-reset: item
    }
    li {
    display: block;
    margin-bottom: 20px;
    }
    li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    font-weight: bold;
    display: inline-block;
    margin-right: 10px;
    }
    li.nostyle {
        list-style-type: none;
        margin-bottom: 40px;
    }
    li.nostyle:before {
        content: "";
        list-style-type: none;
    }
    h2 {
        margin-bottom: 20px;
    }
}