.about-hero{

    background:linear-gradient(to right,#0a66c2,#004182);

    color:white;

    text-align:center;

    padding:80px 20px;

}

.about-hero h1{

    font-size:48px;

    margin-bottom:20px;

}

.about-hero p{

    max-width:850px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

}

.about-section{

    width:85%;

    max-width:1100px;

    margin:60px auto;

}

.about-section h2{

    color:#0a66c2;

    margin-bottom:20px;

}

.about-section p{

    line-height:1.9;

    margin-bottom:20px;

}

.mission-section{

    width:85%;

    max-width:1100px;

    margin:60px auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.mission-card{

    background:white;

    padding:35px;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

}

.mission-card h2{

    color:#0a66c2;

    margin-bottom:20px;

}

.services{

    width:90%;

    max-width:1200px;

    margin:70px auto;

    text-align:center;

}

.services h2{

    color:#0a66c2;

    margin-bottom:40px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.service-card{

    background:white;

    padding:30px;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-6px);

}

.why-us{

    width:90%;

    max-width:1200px;

    margin:70px auto;

    text-align:center;

}

.why-us h2{

    color:#0a66c2;

    margin-bottom:35px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}

.why-grid div{

    background:white;

    padding:22px;

    border-radius:10px;

    box-shadow:0 5px 12px rgba(0,0,0,.08);

    font-weight:600;

}

.cta{

    background:#0a66c2;

    color:white;

    text-align:center;

    padding:70px 20px;

}

.cta h2{

    font-size:36px;

    margin-bottom:20px;

}

.cta p{

    margin-bottom:35px;

    font-size:18px;

}

.cta-btn{

    background:white;

    color:#0a66c2;

    text-decoration:none;

    padding:15px 35px;

    border-radius:8px;

    font-weight:bold;

}

.cta-btn:hover{

    background:#f4f4f4;

}

@media(max-width:768px){

    .about-hero h1{

        font-size:34px;

    }

    .about-hero p{

        font-size:17px;

    }

}