.about-header{

    background:#111;
    color:#fff;

    text-align:center;

    padding:90px 20px;

}

.about-header h1{

    font-size:48px;

    margin-bottom:15px;

}

.about-header p{

    font-size:20px;

    color:#ddd;

}

.about-section{

    width:90%;

    margin:80px auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.about-text{

    flex:1;

}

.about-text h2{

    font-size:36px;

    margin-bottom:20px;

}

.about-text p{

    line-height:1.8;

    margin-bottom:20px;

    color:#555;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:15px;

}

.mission{

    width:90%;

    margin:70px auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.box{

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.box h3{

    margin-bottom:15px;

}

.box p{

    color:#666;

    line-height:1.7;

}

footer{

    background:#111;

    color:white;

    text-align:center;

    padding:25px;

    margin-top:60px;

}