/* Initially hide all sections */
.section-content {
    display: none;
}

/* Show the section that matches the current URL fragment (#id) */
.section-content:target {
    display: block;
}

/* Sticky Menu styles */
.sticky-menu {
    top: 0;
    padding: 10px 0;
    z-index: 1000;
}

.sticky-menu1 a {
    padding: 5px 15px;
    display: inline-block;
    text-decoration: none;
    color: white;

    /* Text color */
}

.sticky-menu a:hover {
    background-color: #0047AB;
}

/* Keep the hover effect after clicking or focusing but only show underline */
.sticky-menu a:focus,
.sticky-menu a:active,
.sticky-menu a[href*="#"]:target {
    background-color: transparent;

    /* Remove background color */
    text-decoration: underline;

    /* Add underline on focus or active */
    outline: none;

    /* Remove the outline for a cleaner look */
}