footer {
    z-index: 2;
    background-color: #160e3a59;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    min-width: 100%;
    border-radius: 50px 50px 0 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-family: "Poppins-Light";
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3c25a5cc; 
}

.footer-links img {
    width: 30px;
    height: auto;
    margin-left: 10px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
}