.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer h3{
    color:#fff;
    margin-bottom:20px;
}

.footer p{
    line-height:1.8;
}

.footer-links a{
    display:block;
    color:#cbd5e1;
    text-decoration:none;
    margin-bottom:10px;
    transition:.3s;
}

.footer-links a:hover{
    color:#f59e0b;
    padding-left:5px;
}

.footer-social{
    margin-top:15px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:#1e293b;
    border-radius:50%;
    margin-right:8px;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#f59e0b;
}

.footer-bottom{
    border-top:1px solid #334155;
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}