/*Кнопка для скачивания документа*/
.download-card {
    display: inline-block;
    width: 100%;
    /* height: 150px;  */
    padding: 20px;
    /* margin: 10px; */
    border-radius: 12px;
    background-color: #f1baff; 
    color: rgb(0, 0, 0);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    /*Для наведения на кнопку*/
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
    background-color: #c27ed3;
}

.download-content {
    /*Содержание кнопки*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.download-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
}

.download-icon i {
    font-size: 2rem;
    display: block;
    text-align: left;
    /* margin-top: 15px; */
}

.download-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}

.download-card:active {
    transform: translateY(-2px) scale(0.98);
}

/* @media (max-width: 768px) {
    .download-card {
        width: 120px;
        height: 120px;
    }
} */