#privacy-policy {
    margin:auto;
    width: fit-content;
    max-width: 1200px;
    padding: 0px 10px;
    font-size: 15px;
}
#privacy-policy a {
    position: relative;
    text-decoration: none;
    color: var(--col_action);
}
#privacy-policy a::after {
    content: '';
    position: absolute;
    width: 0px;
    height: 1px;
    left: 50%;
    bottom: 2px;
    background-color: var(--col_action2);
    transition: all ease-in-out .2s;
}   
@media not all and (any-pointer: coarse) {
    #privacy-policy a:hover {
        color: var(--col_action2);
    }
    #privacy-policy a:hover::after {
        width: 100%;
        left: 0;
    }
}    