*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
background:#f5f7fa;
color:#333;
}




.header{
position: fixed;
background:#003C87;
color:white;
padding:15px;
display:flex;
justify-content:space-between;
align-items:center;
width: 100%;
z-index: 100;
}

.logo{
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo h1{
    margin: 0;
    font-size:28px;
}

.nav a{
color:white;
margin-left:15px;
text-decoration:none;
}

.nav a:hover{
text-decoration:underline;
}

.imagee{
    text-align: center;
    width: auto;
}

.page{
max-width:1200px;
margin:auto;
display:flex;
gap:20px;
padding:20px;
padding-top: 150px;
}

.main{
flex:3;
}

.sidebar{
flex:1;
position:sticky;
top:120px;
align-self:flex-start;
height:fit-content;
z-index: 10;
}



.hero{
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
margin-bottom:30px;
}

.hero h2{
font-size:28px;
margin-bottom:15px;
}

.hero p{
margin-bottom:20px;
line-height:1.6;
}

.btn{
display:inline-block;
background:#C4432D;
color:white;
padding:10px 20px;
border-radius:5px;
text-decoration:none;
}

.btn:hover{
opacity:0.9;
}



.info{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-bottom:30px;
}

.card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.card h3{
margin-bottom:10px;
}

.pdf-info{
font-size:13px;
color:#666;
margin-bottom:12px;
}

.pdf-info a{
color:#C4432D;
text-decoration:none;
font-weight:600;
}

.pdf-info a:hover{
text-decoration:underline;
}

.about{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.policy{
width:100%;
max-width:500px;
margin-top:20px;
}


.footer{
background:#0B7CC2;
padding:10px 20px;
text-align:center;
color:white;
}

.footer-links{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
max-width:900px;
margin:auto;
margin-bottom:20px;
}

.footer-links a{
color:white;
text-decoration:none;
font-size:14px;
padding:6px 10px;
border-radius:4px;
transition:0.2s;
}

.footer-links a:hover{
background:rgba(255,255,255,0.2);
}

.footer-copy{
font-size:13px;
opacity:0.8;
}


/* RESPONSIVE */

@media(max-width:900px){

.page{
flex-direction:column;
}

.header{
flex-direction:column;
gap:10px;
}

}

.policy{
width:100%;
max-width:500px;
margin-top:20px;
}


.main-menu{
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
padding:12px 0;
background:#003C87;
}


.menu-btn{
display:inline-block;
padding:12px 24px;
color:#003C87;
text-decoration:none;
font-weight:600;
border-radius:8px;

transition:all 0.25s ease;

box-shadow:0 3px 8px rgba(0,0,0,0.15);
}


.menu-btn:hover{
background:#003679;
color:white;

transform:translateY(-3px);

box-shadow:0 6px 14px rgba(0,0,0,0.25);
}


.menu-btn:active{
transform:translateY(0);
box-shadow:0 2px 5px rgba(0,0,0,0.2);
}


.sidebar-menu{
background:white;
border-radius:10px;
padding:20px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.menu-section{
margin-bottom:20px;
padding-bottom:15px;
border-bottom:1px solid #e5e5e5;
}

.menu-section:last-child{
border-bottom:none;
}

.menu-section h3{
font-size:16px;
color:#003C87;
margin-bottom:10px;
}

.menu-section a{
display:block;
color:#333;
text-decoration:none;
padding:6px 0;
font-size:14px;
transition:0.2s;
}

.menu-section a:hover{
color:#C4432D;
padding-left:6px;
}


.footer{
background:#003C87;
color:white;
}

.footer-container{
max-width:1200px;
margin:auto;
padding:40px 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:30px;
}

.footer-col h4{
margin-bottom:12px;
font-size:16px;
}

.footer-col a{
display:block;
color:#dfe6f0;
text-decoration:none;
margin-bottom:6px;
font-size:14px;
transition:0.2s;
}

.footer-col a:hover{
color:white;
padding-left:4px;
}

.footer-bottom{
text-align:center;
padding:15px;
background:#002a5c;
font-size:13px;
}


.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:white;
}

.main-menu{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}
#logowanie{
    display:none;
}
@media screen and (max-width:900px){

    .menu-toggle{
        display:block;
        text-align:center;
        margin-top:10px;
    }

    .main-menu{
        display:none;
        flex-direction:column;
        width:100%;
        background:#003C87;
        border-radius:10px;
        margin-top:10px;
        padding:10px;
    }

    .sidebar-menu{
        display:none;
    }
    #logowanie{
    display:flex;
}

    .main-menu.active{
        display:flex;
    }


}
