*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background: #fff;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 4%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.logo{
    font-size: 28px;
    font-weight: bold;
    color:#ff6200;
}
.logo span{
    color: #000;
}
.nav-links{
    list-style: none;
   display: flex;
}
.nav-links li{
    margin-left: 25px;
}
.nav-links a{
    text-decoration: none;
    color: #333;
    font-size: 16px;
}
.nav-links a:hover{
    color: orange;
}
.features{
    padding: 40px 6%;
    text-align: center;}

.features h2{
    font-size: 32px;
    margin-bottom: 40px;
}
.features h2 span{
    background:#ff6200;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
}
.features-box{
    display: flex;
    gap: 25px;
}
.feature-card{
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.feature-card img{
    width: 90px;
    margin-bottom: 15px;  
}
.feature-card h3{
    font-size: 22px;
    margin-bottom: 10px;
}
.feature-card p{
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}
.feature-card button{
    padding: 10px 25px;
    border: 2px solid #333;
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.feature-card button:hover{
    background: orange;
    color: #fff;
    border-color: orange;
}
    .nav-links{
        margin-top: 10px;
    }
    .nav-links li{
        margin: 10px;
    }

    #bar{
        display: none;
    }

    @media(max-width: 990px){
        .features-box{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }
    }

@media (max-width: 768px){
    .nav-links{
        display: none;
    }

    #bar{
        display: block;
    }
}

@media(max-width: 575px){
    .features-box{
        grid-template-columns: repeat(1, 1fr);
    }
}