body{

    background:#f5f5f5;

}

.about-hero{

    margin-top:90px;

    text-align:center;

    padding:80px 20px;

    background:#fff;

}

.about-hero h1{

    font-size:48px;

    color:#c1121f;

}

.about-hero p{

    margin-top:15px;

    color:#666;

    font-size:18px;

}

.about-company{

    width:90%;

    max-width:1200px;

    margin:70px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.1);

}

.about-text h2{

    margin-bottom:20px;

    color:#c1121f;

    font-size:36px;

}

.about-text p{

    line-height:1.8;

    color:#555;

}

.mission{

    width:90%;

    max-width:900px;

    margin:70px auto;

    text-align:center;

}

.mission h2{

    color:#c1121f;

    margin-bottom:20px;

}

.mission p{

    color:#555;

    line-height:1.8;

}

.stats{

    width:90%;

    max-width:1200px;

    margin:70px auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.stat-box{

    background:white;

    text-align:center;

    padding:35px;

    border-radius:18px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.stat-box h2{

    color:#c1121f;

    font-size:40px;

}

.about-contact{

    width:90%;

    max-width:800px;

    margin:80px auto;

    text-align:center;

}

.about-contact h2{

    margin-bottom:15px;

}

.about-contact p{

    margin-bottom:30px;

    color:#666;

}

.about-contact a{

    display:inline-block;

    background:#c1121f;

    color:white;

    padding:15px 40px;

    text-decoration:none;

    border-radius:10px;

}

.about-contact a:hover{

    background:#8f0f18;

}

@media(max-width:768px){

.about-company{

grid-template-columns:1fr;

}

.about-hero h1{

font-size:36px;

}

}