*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Cairo,sans-serif;
}

body{

    background:#f5f7fa;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

}

.container{

    width:1100px;
    max-width:95%;

}

.header{

    text-align:center;
    margin-bottom:50px;

}

.header h1{

    color:#0F4C81;
    font-size:45px;
    margin-bottom:10px;

}

.header p{

    color:#555;
    font-size:20px;

}

.cards{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

.card{

    background:white;

    border-radius:20px;

    padding:45px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.card h2{

    color:#0F4C81;
    margin-bottom:10px;

}

.card h3{

    color:#777;
    margin-bottom:20px;
    font-size:30px;

}

.card p{

    margin-bottom:35px;
    color:#555;
    line-height:1.8;

}

.card a{

    display:inline-block;

    text-decoration:none;

    background:#0F4C81;

    color:white;

    padding:12px 40px;

    border-radius:10px;

    transition:.3s;

}

.card a:hover{

    background:#0a365a;

}

@media(max-width:768px){

.cards{

grid-template-columns:1fr;

}

.header h1{

font-size:35px;

}

}