p {
    cursor: pointer;
    color: #006400;
    transition: background-color 0.3s ease;
}

ul {
    list-style-type: none;
    padding: 0;
    display: none;
}

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

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

p:hover::after {
    transform: scaleX(1);
}

.content-active {
    display: block;
}

@media (max-width: 768px) {
    .column {
        /* margin: 0.2rem; /* Adjust the margin as needed */
        /* min-width: 350px; /* Adjust the minimum width as needed */
        min-width: 300px;
        max-width: 700px;
        padding: 10px 10px 0px 10px;
        margin: 0px 0px 10px 0px;
    }

}