       /* Reset default margins and paddings */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    content-nar {
        background-color: burlywood;
        color:darkgreen;
    }  
   
   /* Container for the columns */
    .container {
        display: flex;
        gap: 20px; /* Space between columns */
        flex-wrap: wrap; /* Allows wrapping on smaller screens */
    }

    /* Each column */
    .column {
        flex: 1; /* Equal width columns */
        min-width: 250px; /* Prevents columns from getting too narrow */
        background-color: White;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
    
    }

    h1 {
        color: blue;
        text-align: center;
    }

    h2 {
        color: blue;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 5px;
    }


    .longline {
        border: none;
        margin-top: 10px;
        height: 5px;
        background-color: darkorange;
    }

    .shortline {
        border: none;
        margin-top: 10px;
        margin-bottom: 5px;
        height: 1px;
        background-color: darkorange;
        color: darkorange;
    }

    p {
    font-size: 18px;
    line-height: 1.6;
    background-color: lightyellow;
    color: darkgreen;
    }

    li {
    font-size: 20px;
    line-height: 1.6;
    }

       /* Base list styling */
    ul {
        list-style-type: disc; /* bullet style */
        padding-left: 20px;    /* default indent */
    }

    /* Indent nested lists */
    ul ul {
        padding-left: 30px;    /* extra indent for second level */
        list-style-type: circle; /* change bullet style for clarity */
    }

    /* Third level */
    ul ul ul {
        padding-left: 40px;
        list-style-type: square;
    }

    .centerimg {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
    }


