body{
font-family:Arial, sans-serif;
margin:0;
background:#f5f5f5;
}

.container{
max-width:1000px;
margin:auto;
padding:20px;
}

.header{
background:#2c7be5;
color:white;
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:20px;
font-weight:bold;
color:white;
text-decoration:none;
}

.nav a{
color:white;
margin-left:15px;
text-decoration:none;
}

.nav a:hover{
text-decoration:underline;
}

.card{
background:white;
padding:15px;
margin-bottom:15px;
border-radius:6px;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.card a{
font-size:18px;
font-weight:bold;
text-decoration:none;
color:#333;
}

.footer{
background:#222;
color:white;
text-align:center;
margin-top:40px;
}