/* ===========================
   GOOGLE FONTS
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Abel&family=Inter:wght@300;400;500;600;700&display=swap');

:root{

    --primary:#0B4F8A;
    --secondary:#0D5EA8;
    --accent:#00A86B;
    --light:#F6F8FB;
    --dark:#1E293B;
    --white:#FFFFFF;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Inter',sans-serif;
    background:var(--light);
    color:var(--dark);

}

h1,h2,h3,h4,h5,h6,
.logo a{

    text-decoration:none;

    color:#0B4F8A;

    font-size:40px;

    font-weight:bold;

    letter-spacing:1px;

}

.logo span{

    color:#00A86B;

}
.container{

    width:92%;
    max-width:1400px;
    margin:auto;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f7fa;
    color:#333;
}

.container{
    width:95%;
    max-width:1300px;
    margin:auto;
}

header{
    background:#0B4F8A;
    color:#fff;
    padding:15px 0;
    box-shadow:0 2px 8px rgba(0,0,0,.2);
}

header h1{
    font-size:34px;
}

header p{
    margin-top:5px;
    font-size:15px;
}

/* ===========================
   HEADER
=========================== */

.top-header{

    background:#ffffff;

    position:sticky;

    top:0;

    z-index:9999;

    box-shadow:0 3px 12px rgba(0,0,0,.08);

}

.header-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:85px;

}

nav ul{

    list-style:none;

    display:flex;

    align-items:center;

    gap:15px;

}

nav li{

    position:relative;

}

nav a{

    text-decoration:none;

    color:#333;

    font-size:24px;

    padding:10px 16px;

    transition:.3s;

}

nav a:hover{

    color:#0B4F8A;

}

.hero{
    text-align:center;
    padding:80px 20px;
    background:white;
}

.hero h2{
    font-size:42px;
    color:#0B4F8A;
}

.hero p{
    margin:20px auto;
    max-width:700px;
    font-size:18px;
}

.button{
    display:inline-block;
    background:#0B4F8A;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:5px;
    margin:10px;
}

.button:hover{
    background:#083A66;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin:40px 0;
}

.card{
    background:white;
    padding:25px;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    text-align:center;
}

.card h3{
    color:#0B4F8A;
    margin-bottom:15px;
}

.menu-toggle{

    display:none;

    font-size:28px;

    border:none;

    background:none;

    cursor:pointer;

}
@media(max-width:900px){

.menu-toggle{

display:block;

}

nav{

display:none;

position:absolute;

top:85px;

left:0;

width:100%;

background:#ffffff;

box-shadow:0 8px 20px rgba(0,0,0,.08);

}

nav.show{

display:block;

}

nav ul{

flex-direction:column;

padding:20px;

}

nav a{

display:block;

padding:15px;

font-size:22px;

}

}

footer{
    background:#083A66;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:40px;
}