.download-card {
    width: 100%;
    max-width: 400px;
    background: white;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: auto;
}
.icon-btn {
    border: 1px solid black;
    border-radius: 50%;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}
.qr-container {
    width: 100px;
    height: 100px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
@media (min-width: 576px) {
    .content-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
}