.download-card {
    display: inline-flex;
    align-items: center; 
    justify-content: space-between; 
    gap: 15px; 
    padding: 10px 15px; 
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin: 10px 0;
    margin-left: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
    border-left: 5px solid #117243;
}

    .download-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        text-decoration: none;
    }

.download-card__content,
.download-card__text {
    display: flex;
    align-items: center; 
    gap: 8px; 
}

.download-card__title {
    margin: 0;
    font-size: 16px; 
}
