*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;


}

    nav {
    display: flex;
    justify-content: space-between;
    /* border: 1px solid red; */
    padding: 10px;
    }

    .menu { 
    display: flex;
    list-style: none;
    }

    .menu li {
    margin-left: 10px;
    }

    .menu li a {
    text-decoration: none;
    color: #333;
    }
    body {
    background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), url(https://www.qnap.com/event/virtual-background/images/qnap-nas.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    }

    
    .logo a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    }

    .banner {
        background-color: teal;
        color: #fff;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner h1 {
        margin-top: 20px;
    }

    .banner-info {
        text-align: center;
    }

    .banner-info img {
        width: 200px;
        border-radius: 100%;
    }

    main {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    main div {
        padding: 20px;
    }

    main div p {
    margin-top: 10px;
    }   

    main img {
    width: 100%;
    border-radius: 20px;
    }
    section {
        padding: 50px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 2em;
        color: #333;
    }

    .owl-carousel .item {
        text-align: center;
        
    }

    .owl-carousel .project-info img {
        max-width: 50%;
        border-radius: 10px;
    }
    footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    }
    .motto img {
        width: 100%;
        border-radius: 10px;
        display: flex;
        margin: 0 auto;
    }