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

    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;
    }

    .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;
    }
    .contact-container {
        display: flex;
        justify-content: center;
        padding: 40px;
    }

    .contact-form {
        width: 100%;
        max-width: 500px;
    }

    fieldset {
        border: none;
        background: #fff;
        padding: 25px;
        border-radius: 8px;
    }

    legend {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    label {
        display: block;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    input, textarea {
        width: 100%;
        padding: 10px;
        border-radius: 5px;
    }

    button {
        margin-top: 15px;
        width: 100%;
        padding: 10px;
        background: #111;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    button:hover {
        background: #333;
    }
    /* 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;
    }
}