html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, sans-serif;
    font-weight: normal;
}
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    font-size: 1.2rem;
}
ol {
    display: flex;
    flex-wrap: wrap;
    list-style-position: outside;
    padding-left: 0;
    list-style: none;
    counter-reset: list-counter;
    gap: 10px;
    margin-bottom: 30px;
}

ol li {
    position: relative;
    padding-left: 40px; /* Increase padding to accommodate the number */
    padding-right: 20px;
    /* background-color: #f0f0f0; */
    list-style: none;
    display: flex;
    align-items: center; /* Align content vertically */
    min-height: 32px; /* Set a minimum height for each list item */
    border-radius: 5px;
    width: calc(33% - 2 * 10px);
    box-sizing: border-box;
}

ol li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 50%; /* Adjust the position to vertically center the number */
    transform: translateY(-50%); /* Center the number vertically */
    /* background-color: #cccccc; */
    padding: 4px 8px;
    margin-right: 10px;
    border-radius: 5px 0 0 5px;
    min-width: 15px;
}
.blue li {
   background: #E5E9F0;
    border: 1px solid #CBD5E0;
    color: #2D3748
}
.blue li::before {
    background: #84C6FF;
    color: #ffffff;
}
.green li {
    background:  #F0FFF4;
     border: 1px solid #A7F3D0;
     color: #065F46
 }
 .green li::before {
     background: #34D399;
     color: #ffffff;
 }
 .grey li {
    background:  #F5F7FA;
     border: 1px solid  #D1D5DB;
     color:  #4B5563
 }
 .grey li::before {
     background:  #A0A7B1;
     color: #ffffff;
 }
 .orange li {
    background:  #FEF3C7;
     border: 1px solid   #FECACA;
     color:  #776107
 }
 .orange li::before {
     background:  #F6AD55;
     color: #ffffff;
 }
@media screen and (max-width: 767px) {
    ol li {
        width: 100%;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) { 
    ol li {
        width: calc(50% - 2 * 10px);
    }
}
