 body {
        margin: 0;
        font-family: Arial, sans-serif;
    }

    header {
        background-color: #0b1d2a;
        padding: 20px;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        width: 150px;
    }

    .list-ul {
        list-style: none;
        display: flex;
        gap: 30px;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .list-ul a {
        color: #f5f5f5;
        text-decoration: none;
        font-weight: bold;
    }

    .list-ul a:hover {
        color: #d4af37;
    }

    #search-bar {
        padding: 5px 10px;
    }
        .menu-toggle {
        display: none;
        font-size: 28px;
        cursor: pointer;
    }
    main {
        padding: 50px 20px;
        max-width: 900px;
        margin: auto;
    }

    .explorer section {
        background: #ffffff;
        padding: 25px;
        margin-bottom: 25px;
        border-radius: 10px;
        border: 1px solid #eee;
        transition: 0.2s ease;
    }

    .explorer section:hover {
        transform: translateY(-3px);
    }

    h1 {
        margin-bottom: 10px;
        font-size: 28px;
    }

    h2 {
        margin-bottom: 10px;
        font-size: 20px;
        color: #222;
    }

    p {
        margin-bottom: 12px;
        color: #555;
    }

    ul {
        padding-left: 20px;
        margin-top: 10px;
    }

    li {
        margin-bottom: 6px;
    }

    .explorer-intro {
        text-align: center;
        background: transparent;
        border: none;
    }
    /* FOOTER */
    footer {
        background: #111;
        color: white;
        text-align: center;
        padding: 20px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        display: inline;
        margin: 0 10px;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        padding-inline: 20px;
    }
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column !important;
        align-items: center;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .nav-links a {
        display: block;
        width: 100%;
        color: white;
        text-decoration: none;
    } 
    

    #navLinks {
        display: none;
        width: 100%;
    }

    #navLinks.show {
        display: block;
    }

    #navLinks a {
        display: block;
        width: 100%;
        padding: 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
        text-align: center;
    }
    #search-bar {
        display: none;
    }
    #navLinks a {
        display: block;
        width: 100%;
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }
    #navLinks a:hover {
        color: #d4af37;
    }
}