.fy-footer{
background:#1b2a3a;
color:#fff;
margin-top:50px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
gap:40px;
padding:40px 20px;
flex-wrap:wrap;
}

.footer-about{
flex:1;
min-width:250px;
}

.footer-about h3{
margin-bottom:10px;
color:#ffb703;
}

.footer-about p{
font-size:14px;
line-height:1.6;
color:#ddd;
}

.footer-links{
flex:1;
min-width:200px;
}

.footer-links h4{
margin-bottom:10px;
color:#ffb703;
}

.footer-links ul{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:8px;
}

.footer-links a{
color:#ddd;
text-decoration:none;
font-size:14px;
}

.footer-links a:hover{
color:#fff;
text-decoration:underline;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.2);
text-align:center;
padding:15px;
font-size:14px;
color:#ccc;
}

/* Mobile */

@media (max-width:768px){

.footer-container{
flex-direction:column;
text-align:center;
}

}