.app-download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}
.app-download-buttons img {
    transition: transform 0.2s ease;
    max-width: 160px;
    height: auto;
}
.app-download-buttons a:hover img {
    transform: scale(1.03);
}
@media (max-width: 480px) {
    .app-download-buttons img {
        max-width: 140px;
    }
}
