
.legal-container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}
ul {
    list-style-type: disc; /* Use the default disc markers for list items */
    padding-left: 20px;    /* Add padding to the left for indentation */
    margin: 0;             /* Remove default margin */
    line-height: 1.5em;
    }

    /* Apply standard styling for list items */
    li {
        margin-left: 20px;     /* Indent list items */
        line-height: 1.5em;
        font-size: 1.1em;
    }

    /* Additional nested list styling */
    ul ul {
        list-style-type: circle; /* Use circle markers for nested lists */
        padding-left: 20px;    /* Add additional padding for nested lists */
    }

    ul ul ul {
        list-style-type: square; /* Use square markers for deeper nested lists */
        padding-left: 20px;    /* Add additional padding for deeper nested lists */
    }
    h4 {
        margin-top: 50px;
    }
       
