footer {
    background-color: #422866;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #ffffff;
}

footer .app-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

footer .app-links a img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin: 0 5px;
}

footer .app-links a {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

footer .footer-links a,
footer .footer-links p {
    margin: 0 10px;
    padding: 5px;
    color: #ffffff;
    text-decoration: none;
}

footer img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    footer {
        padding: 10px 0;
    }

    footer .footer-links, footer .app-links {
        flex-direction: column;
    }

    footer .footer-links a, footer .footer-links p,
    footer .app-links a {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    footer .app-links a img {
        height: 30px;
    }
}
