body{
    margin:0;
    background:#f5f7fa;
    color:#1f2937;
    line-height:1.8;
}

.about-hero{
    background:
    linear-gradient(
        rgba(7,48,71,.82),
        rgba(7,48,71,.82)
    );

    color:#fff;
    padding:120px 20px 90px;
    text-align:center;
}

.about-hero h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:22px;
}

.about-hero p{
    max-width:920px;
    margin:auto;
    font-size:20px;
    color:rgba(255,255,255,.9);
}

.about-container{
    width:min(1200px, 92%);
    margin:auto;
    padding:90px 0;
}

.about-section{
    margin-bottom:72px;
}

.grid-2{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:40px;
}

.about-section h2{
    font-size:40px;
    color:#073047;
    margin-bottom:24px;
    position:relative;
}

.about-section h2::after{
    content:'';
    width:80px;
    height:4px;
    background:#00a6c7;
    display:block;
    margin-top:12px;
    border-radius:10px;
}

.about-section p{
    font-size:17px;
    color:#4b5563;
    margin-bottom:18px;
}

.info-card{
    background:#fff;
    padding:36px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.info-card h3{
    margin-top:0;
    margin-bottom:18px;
    color:#073047;
    font-size:26px;
}

.info-card ul{
    padding-left:20px;
    margin:0;
}

.info-card li{
    margin-bottom:12px;
    color:#4b5563;
}

@media(max-width:900px){

    .grid-2{
        grid-template-columns:1fr;
    }

    .about-hero h1{
        font-size:38px;
    }

    .about-hero p{
        font-size:18px;
    }

    .about-section h2{
        font-size:32px;
    }

}
