.gsc-waste-card{
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(22,77,182,.08);
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    text-align: center;
    transition: all .3s ease;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:220px;
}

.gsc-waste-card:hover{
    border-color: rgba(22,77,182,.20);
    background: rgba(255,255,255,.95);
    box-shadow: 0 8px 20px rgba(22,77,182,.08);
}

.gsc-waste-card h4{
    color: rgb(22,77,182);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.gsc-waste-card p{
    margin: 0;
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
    text-align: center;
}

.gsc-benefits .eco-benefit-card{
    min-height:180px;
    padding:30px;

    flex-direction:column;
    justify-content:center;
    text-align:center;
}

.gsc-benefits .eco-benefit-icon{
    margin-bottom:15px;
}

.gsc-benefits .eco-benefit-icon i{
    font-size:2.4rem;
}

.gsc-benefits .eco-benefit-content h5{
    margin:0;
    font-size:1.1rem;
    line-height:1.5;
}

.gsc-stationery-card{
    background:#ffffff;
    border:1px solid rgba(22,77,182,.10);
    border-radius:24px;
    padding:35px;
    height:100%;
    box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.gsc-stationery-card h4{
    color:rgb(22,77,182);
    font-size:1.5rem;
    font-weight:700;
    text-align:center;
    margin-bottom:25px;
}

.gsc-stationery-item{
    position: relative; /* REQUIRED */

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f5f9ff 100%
    );

    border: 1px solid rgba(22,77,182,.08);
    border-radius: 14px;

    min-height: 110px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:18px 15px;

    font-size:1rem;
    font-weight:600;
    color:#333;

    text-align:center;

    overflow:hidden;
    transition:.3s ease;
}

.gsc-stationery-item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        rgb(22,77,182),
        rgb(88,112,234)
    );
}

.gsc-stationery-item:hover{
    transform: translateY(-3px);
    border-color: rgba(22,77,182,.20);
    background:#fff;
    box-shadow: 0 10px 25px rgba(22,77,182,.12);
}

.gsc-stationery-featured{
    width:100%;
}

/* Left Divider */

.gsc-divider-left img{
    left: 1rem;
    top: -1rem;
    transform: none;
}

/* Right Divider */

.gsc-divider-right img{
    right: 0.5rem;
    top: -1rem;
    transform: scaleX(-1);
}