body{
    font-family: 'tajawal', sans-serif;
    background:#f8f9fa;
    text-align:center;
}

.products{
    padding:40px 0;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    max-width:700px;
    margin:auto;
}

.product-box{
    background:#fff;
    padding:15px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.product-box img{
    width:100%;
    height:auto;
}

.product-box .btn{
    margin-top:10px;
    width:100%;
}


.info-section{
    max-width:700px;
    margin:40px auto;
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

html{
    scroll-behavior:smooth;
}