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;
}
main {
    padding: 40px;
}

.about {
    background-color: whitesmoke;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
}

h1, h2 {
    margin-bottom: 10px;
    color: #111;
}

.team-section {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
}

.team-member {
    margin-top: 15px;
    margin-left: 25px;
}


/* TESTIMONY */
.testymonies {
    background: #f0f0f0;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
}

.testymonies p {
    font-style: italic;
}

.testymonies h4 {
    margin-top: 8px;
    font-size: 14px;
    color: gray;
}

/* FOOTER */
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #ffcc00;
}
@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;
    }
}