.chrnl-heading {
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 15px;
}

.conical-top-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* Makes the items appear side by side */
}

.conical-top-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    /* Distributes buttons evenly */
    background-color: white;
    /* Keeps the menu background white */
    gap: 10px;
    /* Adds 10px spacing between buttons */
}

.conical-top-menu ul li {
    margin: 0;
    padding: 0;
    flex-grow: 1;
    /* Ensures each button takes equal space */
    text-align: center;
    /* Centers the text */
}

.conical-top-menu ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    /* Makes the text white */
    font-weight: bold;
    background-color: #0f3db8;
    /* Sets button background to blue */
    border-radius: 5px;
    /* Optional: Slightly rounded corners for a modern look */
}

.conical-top-menu ul li a:hover {
    background-color: darkblue;
    /* Slightly darker blue on hover */
}

@media screen and (max-width: 1023px) {
    .conical-top-menu ul li {
        Width: 100%;
        margin: 5px 0px;
    }
    .conical-top-menu ul {
        display: block;
    }
}