h4:hover {
    text-decoration: none;
    color: white;
    background-color: #006400;
}

h4::after {
    content: "";
    display: block;
    /* width: 100%; */
    height: 4px;
    background-color: #006400;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

ul {
    display: none;
    padding-top: 10px;
    padding-bottom: 0px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #006000;
    background-color: #fff;
}

p {
    padding-right: 10px;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    color:#777;
}

a {
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: red;
}

li {
    list-style-type: none;
    padding-left: 20px;
    padding-bottom: 10px;
    border: 0px solid #000;
}

li > p {
    margin: 0px;
    padding: 0px 0px 5px 0px;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color:#006000;
}

.content-active {
    display: block;
}


@media (max-width: 600px) {
    .column {
        max-width: 340px;
    }
    .column > h2 {
        font-size: 1.7rem;
    }
    .column > h4 {
        font-size: 1.1rem;
        min-width: 320px;
    }
    .column > ul > p {
        font-size: 1.0rem;
    }
    .column > ul > p > a {
        font-size: 1.0rem;
    }
    .column > ul > li > p,a {
        font-size: 1.0rem;
    }
}
/*
@media (min-width: 710px) {
    .column {
        max-width: 640px;
    }
    .column > h2 {
        font-size: 1.6rem;
    }
    .column > h4 {
        font-size: 1rem;
        min-width: 620px;
    }
    .column > ul > p {
        font-size: 0.7rem;
    }
    .column > ul > p > a {
        font-size: 0.7rem;
    }
    .column > ul > li > p,a {
        font-size: 0.7rem;
    }
}
*/
@media (min-width: 1110px) {
    .column {
        max-width: 835px;
    }
    .column > h2 {
        font-size: 1.7rem;
    }
    .column > h4 {
        font-size: 1.2rem;
        min-width: 815px;
    }
    p {
        font-size: 1em;
        font-weight: 300;
    }
    .column > ul > p > a {
        font-size: 1rem;
    }
    .column > ul > li > p,a {
        font-size: 1.1rem;
    }
}