.product-section{
     
    margin:60px auto;
    padding:0 20px;
}
.section-heading{
    text-align:center;
    font-size:32px;
    font-weight:bold;
    color:#000;
    margin-bottom:16px;
}
.section-desc{
    text-align:center;
    font-size:16px;
    line-height:1.6;
    color:#333;
    max-width:980px;
    margin:0 auto 40px;
}
.product-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}
.product-card{
    background:#fff;
    padding:24px;
    border-radius:8px;
    box-shadow:0 0 10px #00000008;
}
.product-img{
    width:100%;
    height:240px;
    object-fit:contain;
    margin-bottom:22px;
}
.product-title{
    font-size:18px;
    font-weight:bold;
    color:#000;
    margin-bottom:14px;
    line-height:1.3;
}
.product-text{
    font-size:15px;
    color:#777;
    line-height:1.6;
    margin-bottom:20px;
}
.quote-link{
    font-size:16px;
    color:#ffd300;
    font-weight:600;
    text-decoration:none;
    color: var(--color-primary);
}
.quote-link:hover{
    text-decoration:underline;color:var(--color-second);
}
 
@media(max-width:992px){
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:600px){
    .product-grid{
        grid-template-columns:1fr;
    }
    .section-heading{
        font-size:26px;
    }
}