.section {
    margin-top: 40px;
}

.ctnr {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    box-sizing: border-box;
}

.ctnr h1, .ctnr p, .ctnr li {
    color: black;
}
.add-info {
    margin-bottom: 20px;
}
h2 {
    display: inline;
    font-weight: bold;
    font-size: 18px;
    line-height: 37px;
    color: #000000;
    margin-top: 10px; 
    margin-bottom: 5px;
}
ol {
    font-size: 18px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 20px;
}
ol {
    list-style: none;
    counter-reset: li;
}
ol li:before {
    counter-increment: li;
    content: counters(li,".") ". ";
}
@media (max-width: 767px) {
    .ctnr {
        padding: 0;
        font-size: 12px;
    }
      ol {
        padding-left: 8px;
        font-size: 14px;
      }
}