/* Remove underline from links by default and change color */
a {
    text-decoration: none;
    color: #c30206; /* This sets the default link color */
}

/* Change link appearance on hover */
a:hover {
    font-weight: bold;
    text-decoration: none; /* Ensures the underline is removed on hover */
    color: #c30206; /* Maintains the color on hover */
}

    /* Style for links within the page text */
    .page-text a {
        color: #c30206 !important; /* Link color is specifically #c30206 */
        text-decoration: none; /* No underlining or decoration */
        font-weight: normal; /* Normal text weight */
        transition: color 0.3s; /* Smooth color transition on hover */
    }

    /* Style for links within the page text on hover */
    .page-text a:hover {
        color: #ff0000 !important; /* Red color on hover */
        font-weight: bold; /* Bold text on hover */
    }
