body{
    margin:0;
    background:#eef2f7;
    font-family:"Segoe UI",Arial,sans-serif;
    color:#222;
}

header{
    background:linear-gradient(135deg,#003366,#0066aa);
    color:white;
    text-align:center;
    padding:50px 20px;
    box-shadow:0 4px 15px rgba(0,0,0,.25);
}

header h1{
    margin:0;
    font-size:2.8em;
    font-weight:600;
}

header p{
    margin-top:12px;
    font-size:1.2em;
}

main{
    width:min(1100px,95%);
    margin:40px auto;
}

h2{
    color:#003366;
    border-bottom:3px solid #0066aa;
    padding-bottom:8px;
}

.card{
    display:flex;
    gap:25px;
    align-items:center;
    background:white;
    border-radius:15px;
    margin:25px 0;
    padding:20px;
    box-shadow:0 6px 18px rgba(0,0,0,.12);
    transition:.25s;
    border-left:8px solid #0055aa;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.card img{
    width:140px;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    border:3px solid white;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

.card h3{
    margin-top:0;
    color:#003366;
}

.card p{
    line-height:1.5;
}

.card a{
    display:inline-block;
    margin-top:10px;
    background:#0055aa;
    color:white;
    text-decoration:none;
    padding:10px 18px;
    border-radius:6px;
    font-weight:600;
}

.card a:hover{
    background:#003366;
}