/* Ensure unordered lists show disc bullets */
.page-content ul {
    list-style-type: disc; /* round bullets */
   /* spacing from left */
    padding-left: 20px;
}

/* Ensure ordered lists show numbers */
.page-content ol {
    list-style-type: decimal !important; /* 1, 2, 3 numbering */
   
    padding-left: 20px;
}

/* Nested unordered lists use circle bullets */
.page-content ul ul {
    list-style-type: circle !important;
}

/* Nested ordered lists use lowercase letters */
.page-content ol ol {
    list-style-type: lower-alpha !important;
}

/* Optional: space between list items */
.page-content li {
    margin-bottom: 6px;
    list-style:unset;   
}
h2{
    margin-bottom:20px;
}
.h5-doc-page{
    margin-top:15px;
}
p{
    font-size:16px;
    margin-bottom:5px;
}
.sub-q2{
    margin-top:15px;
}
.page-content a {
    color: #066a06;
}
.block-div{
    margin-bottom:15px;
}