.page-banner{
    background:#28a745;
    color:#fff;
    text-align:center;
    padding:120px 20px;
}

.page-banner h1{
    font-size:50px;
    margin-bottom:10px;
}

.category-section{
    padding:80px 8%;
}

.category-image{
    text-align:center;
    margin-bottom:40px;
}

.category-image img{
    width:100%;
    max-width:800px;
    height:450px;
    object-fit:cover;
    border-radius:15px;
}

.category-section h2{
    color:#28a745;
    margin-bottom:20px;
}

.category-section p{
    margin-bottom:30px;
    line-height:1.8;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.product-box{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 2px 12px rgba(0,0,0,.1);
}

.product-box img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-box h3{
    padding:20px;
}

@media(max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .page-banner h1{
        font-size:35px;
    }
}