.page-container {
    display: flex;
    justify-content: center;
    background: #044680;
}

.page {
    padding: 50px 80px;
    max-width: 1200px;
    min-width: 500px;
    margin-top: 120px;
    color: white;
}

ul li {
    list-style-type: disc;
    list-style-position: inside;
    text-indent: -1em;
    padding-left: 2em;
}

#terms-and-conditions ol {
    all: unset;
    font-size: 18px;
}
#terms-and-conditions h1 {
    font-size: 34px;
    color: white;
}
#terms-and-conditions ol {
    all: unset;
    counter-reset: item;
}
#terms-and-conditions ol li {
    all: unset;
    display: block;
    margin: 20px 0;
    position: relative;
}
#terms-and-conditions ol li:before {
    position: absolute;
    top: 0;
    margin-left: -50px;
    color: rgb(255, 255, 255);
    content: counters(item, ".") " ";
    counter-increment: item;
}

.breadcrumb {
    background-color: white;
}