﻿body{
    background:#000;
    margin:0;
    padding:0;
    font-family:Arial,Helvetica,sans-serif;
}

footer{
    background:#000;
    color:#fff;
    padding:40px 20px 20px;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
}

.footer-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:50px;
    flex-wrap:wrap;
}

.footer-box{
    flex:1;
    min-width:220px;
}

.footer-box h3{
    color:#00ffd5;
    text-align:center;
    margin-bottom:15px;
}

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-box li{
    margin:10px 0;
    text-align:center;
}

.footer-box a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.footer-box a:hover{
    color:#00ffd5;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
}

.footer-bottom p{
    margin:8px 0;
}

hr{
    border:0;
    border-top:1px solid #333;
    margin:30px 0;
}

@media (max-width:768px){

    .footer-row{
        flex-direction:column;
        gap:30px;
    }

    .footer-box{
        width:100%;
    }

}
.footer-download{

    margin-top:40px;
    padding:25px;
    background:#101d3d;
    border:1px solid #223355;
    border-radius:12px;
    text-align:center;

}

.footer-download h3{

    color:#00ffd5;
    margin-bottom:10px;

}

.footer-download p{

    color:#ccc;
    margin-bottom:20px;

}

.download-btn{

    display:inline-block;
    padding:12px 24px;
    background:#00ffd5;
    color:#000;
    font-weight:bold;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;

}

.download-btn:hover{

    background:#00caa8;

}