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


:root {
    --header-height: 90px;
}

body {
    font-family:Arial,sans-serif;
    line-height:1.6;
    background:#f5f7fa;
    color:#1e293b;
    padding-top:var(--header-height);
    transition: padding-top 0.2s ease;
}

.site-header {
     background:#7dd3fc;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

.navbar {
    width:100%;
    margin:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1rem 1.25rem
}

.navbar img {
  width: auto;
  height: 48px;
  max-width: 180px;
}



.logo-home-link {
    display:flex;
    align-items:center;
    flex:0 0 auto;
    margin-right:2rem
}

.site-logo {
    height:60px;
    width:auto;
    display:block
}

.nav-links {
    display:flex;
    list-style:none;gap:1rem;
    flex-wrap:wrap;
    margin-left:auto
}

.nav-links a {
    color:#0f172a;
    text-decoration:none;
    font-weight:bold
}

.nav-links a:hover {
    color:#93c5fd
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #0f172a;
    font-size: 2rem;
    cursor: pointer;
}


footer {
    background:#0f172a;
    color:white;
    text-align:center;
    padding:2rem
}


html,
body {
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.nav-links a{
    color:#0f172a;
}

.nav-links a:hover{
    color:#1d4ed8;
}

footer{
    background:#38bdf8;
    color:#0f172a;
}


@media (max-width: 768px) {
    
    
   

    .navbar {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
    }



    .menu-toggle {
        display: block;
    }

    .nav-links {
    display: none;
    width: 100%;
    background: #7dd3fc;
    flex-direction: column;
    padding: 1rem;
    gap: 0.8rem;
    }


    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.8rem;
    }

   .logo-home-link {
        margin-right:0
    }
    
    .site-logo {
    height:46px
    }

}