*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
    line-height:1.6;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#0b3d91;
    color:white;
    text-align:center;
    padding:40px 0;
}

header h1{
    font-size:3rem;
}

nav{
    background:#06275f;
}

nav ul{
    display:flex;
    justify-content:center;
    list-style:none;
}

nav ul li{
    margin:0 20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    display:block;
    padding:15px;
}

nav ul li a:hover{
    background:#0b3d91;
}

.hero{
    background:#f4f7fc;
    text-align:center;
    padding:80px 20px;
}

.hero h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

.hero p{
    max-width:700px;
    margin:auto;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    background:#0b3d91;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
}

.section{
    padding:60px 0;
}

.section h2{
    text-align:center;
    margin-bottom:30px;
    color:#0b3d91;
}

.light{
    background:#f8f9fc;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:white;
    padding:25px;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.card h3{
    margin-bottom:10px;
    color:#0b3d91;
}

.pub-list{
    max-width:900px;
    margin:auto;
}

.pub-list li{
    margin:12px 0;
}

footer{
    background:#06275f;
    color:white;
    text-align:center;
    padding:20px;
}