.about-hero{
    padding:120px 8%;
    text-align:center;
    background:linear-gradient(
        135deg,
        #00a6ff,
        #49d17d
    );
    color:white;
}

.about-hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.about-hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
}

.about-company{
    padding:100px 8%;
    display:flex;
    align-items:center;
    gap:60px;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:42px;
    margin-bottom:20px;
    color:#0f172a;
}

.about-text p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:20px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.vision-mission{
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    background:#f8fbff;
}

.vm-card{
    background:white;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.vm-card h3{
    margin-bottom:15px;
    color:#00a6ff;
}

.why-us{
    padding:100px 8%;
    text-align:center;
}

.why-us h2{
    font-size:42px;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card h3{
    margin-bottom:10px;
}

.why-card p{
    color:#64748b;
}

@media(max-width:768px){

    .about-company{
        flex-direction:column;
    }

    .vision-mission{
        grid-template-columns:1fr;
    }

    .about-hero h1{
        font-size:40px;
    }
}