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

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

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

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

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

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

.product-card h3{
    margin-top:20px;
}

.product-card p{
    color:#666;
    margin:10px 15px;
}

.product-card span{
    display:block;
    color:#28a745;
    font-size:22px;
    font-weight:bold;
    margin:15px 0;
}

.btn-product{
    background:#28a745;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:30px;
}

.btn-product:hover{
    background:#1e7a33;
}

@media(max-width:768px){
    .product-grid{
        grid-template-columns:1fr;
    }
}