/* General styling for unordered lists */
ul {
    list-style-type: disc; /* Default bullet points */
    margin: 1rem 0; /* Add spacing around the list */
    padding-left: 2rem; /* Indent the list items */
    color: var(--text-color-dark); /* Use the theme's text color */
    font-size: 1rem; /* Adjust font size */
    line-height: 1.6; /* Improve readability */
}

/* Styling for list items */
ul li {
    margin-bottom: 0.5rem; /* Add spacing between list items */
}

/* Nested unordered lists */
ul ul {
    list-style-type: circle; /* Change bullet style for nested lists */
    margin-top: 0.5rem; /* Add spacing above nested lists */
    padding-left: 1.5rem; /* Indent nested lists further */
}

/* Links inside list items */
ul li a {
    color: var(--secondary-color); /* Use the theme's accent color */
    text-decoration: none; /* Remove underline */
    transition: var(--transition); /* Smooth hover effect */
}

ul li a:hover {
    text-decoration: underline; /* Add underline on hover */
    color: var(--primary-color); /* Change color on hover */
}