/* Styles for the footer */
#block-garland-ncifooter {
    text-align: center;
}
#block-garland-ncifooter .nci-footer {
    background-color: #edf5fa;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;    
}

#block-garland-ncifooter .nci-footer ul li {
    text-decoration: none;
    list-style-type: none;
}
#block-garland-ncifooter .nci-footer ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
}

#block-garland-ncifooter .nci-footer ul li {
    display: inline; /* Display the list items in a horizontal row */
    margin-right: 10px; /* Add spacing between items */
}

#block-garland-ncifooter .nci-footer ul li:not(:last-child)::after {
    content: '|'; /* Add a pipe after each list item except the last */
    margin-left: 10px; /* Add space before the pipe */
}
/* Styling the list */
#block-garland-ncifooter .nci-footer ul {
    list-style-type: none;  /* Remove bullets */
    display: flex;          /* Make list items horizontal */
    gap: 15px;              /* Space between items */
    padding: 0;
}

/* Styling list items and links */
#block-garland-ncifooter.nci-footer ul li a {
    text-decoration: none;  /* Remove underline */
}


