.about-page{
    padding:80px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:60px;
    align-items:center;
}

.avatar{

    width:300px;
    height:300px;

    border-radius:20px;

    background:linear-gradient(135deg,#2563eb,#60a5fa);

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:90px;

    font-weight:700;

}

.about-content h1{

    font-size:52px;

    margin-bottom:20px;

}

.about-content p{

    font-size:19px;

    color:#555;

    line-height:1.9;

    margin-bottom:25px;

}

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:40px;

}

.stat{

    background:white;

    padding:25px;

    border-radius:16px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.stat h2{

    color:#2563eb;

    font-size:40px;

}

.stat span{

    color:#666;

}
.about-page{

    padding:80px 0;

}

.about-content{

    max-width:900px;

}

.about-content p{

    margin-bottom:28px;

    line-height:1.95;

    font-size:19px;

    color:#555;

}