h1 {
    text-align: center;
    width: 100%;
    margin: 20px;
}

h2 {
    font-family: 'Poppins-SemiBold';
    color: #fff;
    font-size: 25px;
    width: 100%;
    border-radius: 10px;
    background-color: #1F1F1F;
    text-align: center;
    padding: 10px;
    margin-bottom: 30px;
}

.first-section p {
    color: rgba(0, 0, 0, 0.50);
}

.terms {
    counter-reset: item;
}

.terms li {
    line-height: 1.6 ;
    color: rgba(0, 0, 0, 0.50);
}

.terms > li {
    counter-increment: item;
    margin-bottom: 15px;
    list-style: none;
    font-family: 'Poppins-SemiBold';
}

.terms > li::before {
    content: counter(item) '.';
    font-family: 'Poppins-SemiBold';
}

.terms > li > ol {
    counter-reset: subitem;
    list-style: none;
    font-family: 'Poppins-Regular';
}

.terms > li > ol > li {
    counter-increment: subitem;
    padding-left: 35px;
    position: relative;
}

.terms > li > ol > li::before {
    content: counter(item) '.' counter(subitem) '.';
    position: absolute;
    left: 0;
}

.terms > li > ol > li > ol {
    counter-reset: letter;
}

.terms > li > ol > li > ol > li {
    counter-increment: letter;
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.terms > li > ol > li > ol > li::before {
    content: counter(letter, lower-alpha) ") ";
    position: absolute;
    left: 0;
}