/* Стили для раздела скачивания документов */
.download-section {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Список с иконками */
.download-list {
    margin-bottom: 50px;
}

.download-list-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.download-list-item:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
}

.list-icon {
    width: 50px;
    height: 50px;
    background-color: #182968;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.list-icon svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.list-content {
    flex: 1;
}

.list-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.list-content p {
    font-size: 14px;
    color: #6c757d;
}

.list-download-btn {
    padding: 8px 20px;
    background-color: #182968;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.list-download-btn:hover {
    background-color: #0f1a42;
}

/* Стиль для Bitrix */
.best-employee-page .download-section-wrapper {
    margin: 40px 0;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.best-employee-page .content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}