.seller-page h1{

    font-size:34px;

    margin-bottom:10px;

}

.seller-benefits{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:40px;

}

.benefit-card{

    background:#f7fafc;

    padding:25px;

    border-radius:12px;

    transition:.3s;

}

.benefit-card:hover{

    transform:translateY(-5px);

}

.benefit-card h3{

    margin:15px 0 10px;

}

@media(max-width:900px){

.seller-benefits{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.seller-benefits{

grid-template-columns:1fr;

}

}