

.styled-list {
    list-style-type: disc; /* Adds bullet points */
    margin-left: 20px; /* Keeps the margin you had before */
    padding-left: 20px; /* Adds spacing between bullets and text */
    font-size: 17px;
}

    .styled-list li {
        margin-bottom: 30px; /* Optional: Adds spacing between list items */
    }

        .styled-list li a {
            color: #072366; /* Makes the text black */
            text-decoration: underline; /* Underlines the text */
            transition: color 0.3s; /* Smooth color transition on hover */
            text-underline-offset: 2px;
        }

            .styled-list li a:hover {
                color: #7acbbf; /* Changes the text color on hover (Bootstrap primary color) */
                text-decoration: underline; /* Keeps the underline on hover */
            }

            .styled-list li a::before {
                content: '';
            }

    .styled-list li {
        line-height: 1.5rem;
    }
/* For large screens (lg and above) */
@media (min-width: 992px) {
    .styled-list {
        font-size: 25px; /* Increase font size for lg screens */
    }

        .styled-list li {
            margin-bottom: 30px; /* Adjust spacing for larger screens */
            line-height: 2rem; /* Increase line height for better readability */
        }
}