.about{
    padding:80px 0;
}
.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}
.section-tag{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
}
.about-text h1{
    margin-bottom:25px;
    line-height:1.8;
}
.about-text p{
    color:#64748b;
    line-height:2.2;
    margin-bottom:20px;
}
.about-image img{
    width:100%;
    border-radius:20px;
}
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:80px;
}
.stats-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.stats-box h2{
    color:#2563eb;
    font-size:40px;
    margin-bottom:10px;
}
.stats-box p{
    color:#64748b;
}
.stats-box{
    transition:.3s;
}
.stats-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}